agent-comms 1.8.2 → 1.9.1
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/.claude-plugin/plugin.json +1 -1
- package/README.md +2 -0
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -101,6 +101,8 @@ Add to your MCP server configuration:
|
|
|
101
101
|
|
|
102
102
|
The generic MCP bridge works with any MCP client. Incoming messages are included in every tool response.
|
|
103
103
|
|
|
104
|
+
This server is also published to the MCP Registry as `io.github.ExaDev/agent-comms`.
|
|
105
|
+
|
|
104
106
|
### Other harnesses
|
|
105
107
|
|
|
106
108
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-comms",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.1",
|
|
4
4
|
"description": "Cross-harness communication mesh for LLM agents — rooms, DMs, presence, and real-time push delivery over TCP",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "pnpm@10.33.0",
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"url": "git+https://github.com/ExaDev/agent-comms.git"
|
|
10
10
|
},
|
|
11
11
|
"homepage": "https://github.com/ExaDev/agent-comms#readme",
|
|
12
|
+
"mcpName": "io.github.ExaDev/agent-comms",
|
|
12
13
|
"bugs": "https://github.com/ExaDev/agent-comms/issues",
|
|
13
14
|
"license": "MIT",
|
|
14
15
|
"keywords": [
|
|
@@ -45,6 +46,8 @@
|
|
|
45
46
|
"scripts": {
|
|
46
47
|
"prepare": "husky",
|
|
47
48
|
"build": "tsc && printf '#!/usr/bin/env node\n' | cat - dist/cli.js > dist/cli.tmp && mv dist/cli.tmp dist/cli.js",
|
|
49
|
+
"generate:server-json": "tsx scripts/sync-release-metadata.ts",
|
|
50
|
+
"publish:mcp-registry": "tsx scripts/publish-mcp-registry.ts",
|
|
48
51
|
"lint": "eslint .",
|
|
49
52
|
"test": "node --test dist/test/**/*.test.js",
|
|
50
53
|
"typecheck": "tsc --noEmit"
|