secondbrainos-mcp-server 1.2.1 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/build/index.js +2 -0
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -318,9 +318,11 @@ class SecondBrainOSServer {
318
318
  }
319
319
  // Build the agent document as a structured JSON object
320
320
  const agentDocument = {
321
+ agent_id: agent.id,
321
322
  name: agent.name,
322
323
  description: agent.description || '',
323
324
  behaviour_and_instructions: agent.behaviour_and_instructions || '',
325
+ searchMyKnowledge_collection_id: agent.searchMyKnowledge_collection_id || '',
324
326
  actions: agent.actions || [],
325
327
  workflows: (agent.workflows || []).map((wf) => ({
326
328
  id: wf.id,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "secondbrainos-mcp-server",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Second Brain OS MCP Server for Claude Desktop",
5
5
  "type": "module",
6
6
  "main": "build/index.js",