-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathserver.json
More file actions
34 lines (34 loc) · 946 Bytes
/
Copy pathserver.json
File metadata and controls
34 lines (34 loc) · 946 Bytes
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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.spranab/swarmcode",
"description": "Real-time cross-machine communication between Claude Code instances.",
"repository": {
"url": "https://github.com/spranab/swarmcode",
"source": "github"
},
"version": "1.0.3",
"packages": [
{
"registryType": "npm",
"identifier": "swarmcode-mcp",
"version": "1.0.3",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "SWARMCODE_REDIS_URL",
"description": "Redis connection URL for the shared channel",
"isRequired": true,
"isSecret": true
},
{
"name": "SWARMCODE_WORKSPACE_ID",
"description": "Workspace identifier this instance joins",
"isRequired": true,
"isSecret": false
}
]
}
]
}