@tjamescouch/agentchat-mcp 0.6.3 → 0.6.5

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/package.json +1 -1
  2. package/tools/index.js +9 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tjamescouch/agentchat-mcp",
3
- "version": "0.6.3",
3
+ "version": "0.6.5",
4
4
  "description": "MCP server for AgentChat - real-time AI agent communication",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/tools/index.js CHANGED
@@ -24,14 +24,20 @@
24
24
  * agentchat_my_rating - Your rating
25
25
  */
26
26
 
27
- // Chat tools
27
+ // Import for local use
28
+ import { registerConnectTool } from './connect.js';
29
+ import { registerSendTool } from './send.js';
30
+ import { registerListenTool } from './listen.js';
31
+ import { registerChannelsTool } from './channels.js';
32
+ import { registerDaemonTools } from './daemon.js';
33
+ import { registerMarketplaceTools } from './marketplace/index.js';
34
+
35
+ // Re-export for external use
28
36
  export { registerConnectTool } from './connect.js';
29
37
  export { registerSendTool } from './send.js';
30
38
  export { registerListenTool } from './listen.js';
31
39
  export { registerChannelsTool } from './channels.js';
32
40
  export { registerDaemonTools } from './daemon.js';
33
-
34
- // Marketplace tools
35
41
  export { registerMarketplaceTools } from './marketplace/index.js';
36
42
 
37
43
  /**