agent-comms 1.8.2 → 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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "agent-comms",
3
3
  "description": "Cross-harness LLM agent communication mesh — rooms, DMs, and presence",
4
- "version": "1.8.2",
4
+ "version": "1.9.0",
5
5
  "author": {
6
6
  "name": "ExaDev"
7
7
  },
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.8.2",
3
+ "version": "1.9.0",
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"