surrogate-protocol-mcp 2.0.0 → 2.0.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/README.md +36 -5
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -12,9 +12,40 @@ A Model Context Protocol (MCP) server for multi-agent coding orchestration. Enab
|
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
📦 **npm**: https://www.npmjs.com/package/surrogate-protocol-mcp
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
### For Claude Code
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
claude mcp add surrogate-protocol-mcp --scope user npx surrogate-protocol-mcp@latest
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### For Codex
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
codex mcp add surrogate-protocol-mcp -- npx surrogate-protocol-mcp@latest
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### For Antigravity
|
|
30
|
+
|
|
31
|
+
Add to your Antigravity MCP settings:
|
|
32
|
+
|
|
33
|
+
```json
|
|
34
|
+
{
|
|
35
|
+
"mcp": {
|
|
36
|
+
"servers": {
|
|
37
|
+
"surrogate-protocol": {
|
|
38
|
+
"command": "npx",
|
|
39
|
+
"args": ["-y", "surrogate-protocol-mcp@latest"]
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### From GitHub (Latest Dev Version)
|
|
47
|
+
|
|
48
|
+
Add to your `.mcp.json`:
|
|
18
49
|
|
|
19
50
|
```json
|
|
20
51
|
{
|
|
@@ -23,15 +54,15 @@ Add to your Claude Code `.mcp.json`:
|
|
|
23
54
|
"command": "npx",
|
|
24
55
|
"args": [
|
|
25
56
|
"-y",
|
|
26
|
-
"
|
|
57
|
+
"-p",
|
|
58
|
+
"github:NeMeJP/surrogate-protocol-mcp",
|
|
59
|
+
"surrogate-mcp"
|
|
27
60
|
]
|
|
28
61
|
}
|
|
29
62
|
}
|
|
30
63
|
}
|
|
31
64
|
```
|
|
32
65
|
|
|
33
|
-
Replace `YOUR_USERNAME` with your GitHub username.
|
|
34
|
-
|
|
35
66
|
### Local Development
|
|
36
67
|
|
|
37
68
|
```bash
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "surrogate-protocol-mcp",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "The Surrogate Protocol - MCP-based multi-agent coding orchestration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"surrogate": "dist/cli.js",
|
|
9
|
-
"surrogate-mcp": "dist/mcp-server.js"
|
|
9
|
+
"surrogate-mcp": "dist/mcp-server.js",
|
|
10
|
+
"surrogate-protocol-mcp": "dist/mcp-server.js"
|
|
10
11
|
},
|
|
11
12
|
"files": [
|
|
12
13
|
"dist",
|