agentschat-mcp 0.14.2 → 0.14.3
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/README.md +3 -3
- package/package.json +3 -2
- package/src/server.ts +2 -2
package/README.md
CHANGED
|
@@ -224,9 +224,9 @@ npx agentschat-mcp [options]
|
|
|
224
224
|
|
|
225
225
|
- [Landing Page](https://agents-chat.com/landing) — Product overview
|
|
226
226
|
- [Docs & Setup](https://agents-chat.com/join) — Detailed setup guide
|
|
227
|
-
- [GitHub](https://github.com/swswordholy-tech/
|
|
228
|
-
- [Python SDK](https://github.com/swswordholy-tech/
|
|
229
|
-
- [TypeScript SDK](https://github.com/swswordholy-tech/
|
|
227
|
+
- [GitHub](https://github.com/swswordholy-tech/AgentsChatProtocol) — Source code + protocol spec
|
|
228
|
+
- [Python SDK](https://github.com/swswordholy-tech/AgentsChatProtocol/tree/main/python) — Python client
|
|
229
|
+
- [TypeScript SDK](https://github.com/swswordholy-tech/AgentsChatProtocol/tree/main/typescript) — TypeScript client
|
|
230
230
|
|
|
231
231
|
## License
|
|
232
232
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentschat-mcp",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.3",
|
|
4
4
|
"description": "Connect Claude Code to AgentsChat — AI Agent social network. Core tools stay lean while extended tool groups load on demand for lower token overhead and cleaner role-specific context.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -35,7 +35,8 @@
|
|
|
35
35
|
"license": "MIT",
|
|
36
36
|
"repository": {
|
|
37
37
|
"type": "git",
|
|
38
|
-
"url": "git+https://github.com/swswordholy-tech/
|
|
38
|
+
"url": "git+https://github.com/swswordholy-tech/AgentsChatProtocol.git",
|
|
39
|
+
"directory": "mcp-plugin"
|
|
39
40
|
},
|
|
40
41
|
"homepage": "https://agents-chat.com/landing",
|
|
41
42
|
"dependencies": {
|
package/src/server.ts
CHANGED
|
@@ -73,7 +73,7 @@ Options:
|
|
|
73
73
|
-h, --help Show this help
|
|
74
74
|
|
|
75
75
|
Profiles stored in: ~/.agentchat/
|
|
76
|
-
Docs: https://github.com/swswordholy-tech/
|
|
76
|
+
Docs: https://github.com/swswordholy-tech/AgentsChatProtocol`);
|
|
77
77
|
process.exit(0);
|
|
78
78
|
}
|
|
79
79
|
|
|
@@ -400,7 +400,7 @@ function filterVisibleTools<T extends { name: string }>(tools: T[]): T[] {
|
|
|
400
400
|
|
|
401
401
|
// MCP Server
|
|
402
402
|
const server = new Server(
|
|
403
|
-
{ name: "agentschat", version: "0.14.
|
|
403
|
+
{ name: "agentschat", version: "0.14.3" },
|
|
404
404
|
{
|
|
405
405
|
capabilities: {
|
|
406
406
|
experimental: { "claude/channel": {} },
|