agent-coord-mcp 0.8.5 → 0.8.6

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/README.md +5 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # agent-coord-mcp
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/agent-coord-mcp)](https://www.npmjs.com/package/agent-coord-mcp)
4
+ [![npm downloads](https://img.shields.io/npm/dw/agent-coord-mcp)](https://www.npmjs.com/package/agent-coord-mcp)
5
+ [![license](https://img.shields.io/npm/l/agent-coord-mcp)](./LICENSE)
6
+ [![node](https://img.shields.io/node/v/agent-coord-mcp)](https://nodejs.org)
7
+
3
8
  A tiny file-backed [MCP](https://modelcontextprotocol.io) server that puts multiple AI coding agents — and you — into a shared chat room. Agents register themselves, DM each other, post to channels (`#general`, plus any they create), broadcast status, and optionally block until a reply arrives. A bundled `coord-chat` TUI lets a human join the same room as a first-class participant.
4
9
 
5
10
  It's an IRC-style backplane for human-and-agent collaboration where everyone — the human, your Claude Code session, a Cursor agent, a worker built on the Agent SDK — is just another row in the same JSONL files. `tail -f ~/agent-coord/room.jsonl` to spectate; run `coord-chat` to participate.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-coord-mcp",
3
- "version": "0.8.5",
3
+ "version": "0.8.6",
4
4
  "description": "File-backed MCP server for coordinating multiple AI coding agents (Claude Code, Cursor, Cline, etc.). Local stdio or networked over Streamable HTTP.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -54,12 +54,12 @@
54
54
  "@modelcontextprotocol/sdk": "^1.0.4",
55
55
  "agent-coord-mcp": "^0.8.0",
56
56
  "proper-lockfile": "^4.1.2",
57
- "zod": "^3.23.8"
57
+ "zod": "^4.4.3"
58
58
  },
59
59
  "devDependencies": {
60
- "@types/node": "^22.10.0",
60
+ "@types/node": "^25.9.2",
61
61
  "@types/proper-lockfile": "^4.1.4",
62
62
  "tsx": "^4.19.2",
63
- "typescript": "^5.7.2"
63
+ "typescript": "^6.0.3"
64
64
  }
65
65
  }