-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
45 lines (45 loc) · 1.43 KB
/
Copy pathserver.json
File metadata and controls
45 lines (45 loc) · 1.43 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.constripacity/claude-code-bridge",
"description": "MCP relay so Claude Code agents on different machines can exchange messages via named channels.",
"repository": {
"url": "https://github.com/constripacity/Claude-Bridge",
"source": "github"
},
"version": "0.9.2",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "claude-code-bridge",
"version": "0.9.2",
"runtimeHint": "uvx",
"runtimeArguments": [
{
"type": "positional",
"value": "--stdio",
"valueHint": "--stdio"
}
],
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "CLAUDE_BRIDGE_DB",
"description": "SQLite database path (default: ./claude-bridge.db). Share the same path across HTTP and stdio instances to share state.",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "CLAUDE_BRIDGE_AUTH_TOKEN",
"description": "Optional Bearer token. Only applies to HTTP mode (not stdio). When set, requires Authorization: Bearer <token> on all endpoints except /status.",
"isRequired": false,
"format": "string",
"isSecret": true
}
]
}
]
}