@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.
- package/package.json +1 -1
- package/tools/index.js +9 -3
package/package.json
CHANGED
package/tools/index.js
CHANGED
|
@@ -24,14 +24,20 @@
|
|
|
24
24
|
* agentchat_my_rating - Your rating
|
|
25
25
|
*/
|
|
26
26
|
|
|
27
|
-
//
|
|
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
|
/**
|