-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "mcp-agent-communication",
"version": "2.0.0",
"description": "An MCP (Model Context Protocol) server for agent communication and message coordination",
"main": "dist/mcp-server.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"demo": "tsx src/demo.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"agent",
"communication",
"coordination",
"typescript",
"message-queue",
"autonomous-agents",
"tools"
],
"author": "Nicholas Bardy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nbardy/mcp-agent-communication.git"
},
"bugs": {
"url": "https://github.com/nbardy/mcp-agent-communication/issues"
},
"homepage": "https://github.com/nbardy/mcp-agent-communication#readme",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^24.0.4",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.2",
"acorn": "^8.15.0",
"acorn-walk": "^8.3.4",
"arg": "^4.1.3",
"create-require": "^1.1.1",
"diff": "^4.0.2",
"make-error": "^1.3.6",
"undici-types": "^7.8.0",
"v8-compile-cache-lib": "^3.0.1",
"yn": "^3.1.1",
"zod": "^3.25.67"
},
"bin": {
"mcp-agent-communication": "dist/mcp-server.js"
}
}