@opencx/mcp 1.9.0-alpha.0 → 1.9.0

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.
@@ -47,7 +47,7 @@ export function registerCoworkerTools(server, client) {
47
47
  summary: z.string().min(1).max(2000).describe('Summary of what the user needs help with'),
48
48
  context: z.string().max(4000).optional().describe('Additional context about the situation'),
49
49
  }, async (params) => {
50
- const data = await client.post('/coworker/notify-team', params);
50
+ const data = await client.post('/ask-open/notify-team', params);
51
51
  return { content: [{ type: 'text', text: JSON.stringify(data) }] };
52
52
  });
53
53
  server.tool('recall_conversation_history', `Retrieve earlier conversation history when your context has been compacted.
@@ -78,7 +78,7 @@ Supports filters to narrow results — prefer filtering over loading everything.
78
78
  isError: true,
79
79
  };
80
80
  }
81
- const data = await client.get(`/coworker/sessions/${safePath(sessionId)}`);
81
+ const data = await client.get(`/ask-open/sessions/${safePath(sessionId)}`);
82
82
  const kw = keyword?.toLowerCase();
83
83
  let entries = data.events;
84
84
  if (kind || role || kw) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencx/mcp",
3
- "version": "1.9.0-alpha.0",
3
+ "version": "1.9.0",
4
4
  "private": false,
5
5
  "description": "MCP server for OpenCX — manage contacts, sessions, training, and more from Claude Desktop, Cursor, or any MCP client.",
6
6
  "type": "module",