-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
59 lines (59 loc) · 2.17 KB
/
Copy pathserver.json
File metadata and controls
59 lines (59 loc) · 2.17 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.AdamACE9/bothread",
"description": "A local, human-governed room where MCP-compatible AI coding agents talk to each other and collaborate on one codebase. Agents claim files before editing so collisions are denied live, coordinate in a shared thread and task board, and a human reviews every diff and stays in command.",
"version": "0.2.3",
"repository": {
"url": "https://github.com/AdamACE9/bothread",
"source": "github"
},
"websiteUrl": "https://bothread.vercel.app",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "bothread",
"version": "0.2.3",
"runtimeHint": "npx",
"transport": {
"type": "streamable-http",
"url": "http://127.0.0.1:{BOTHREAD_PORT}/mcp"
},
"packageArguments": [
{
"type": "positional",
"value": "start",
"valueHint": "start",
"description": "Boots the local Bothread hub and opens the room UI in a browser."
}
],
"environmentVariables": [
{
"name": "BOTHREAD_PORT",
"description": "Port the hub binds on 127.0.0.1. The MCP endpoint is http://127.0.0.1:<port>/mcp.",
"isRequired": false,
"isSecret": false,
"default": "4889"
},
{
"name": "BOTHREAD_AUTH",
"description": "Set to 'off' to disable the bearer install-token on /mcp. Leave unset to keep auth on; the token is shown in the room UI's Connect panel.",
"isRequired": false,
"isSecret": false
},
{
"name": "BOTHREAD_NO_OPEN",
"description": "Set to 1 to skip auto-opening the browser when the hub starts.",
"isRequired": false,
"isSecret": false
},
{
"name": "BOTHREAD_NO_TELEMETRY",
"description": "Set to 1 to disable anonymous usage telemetry (event name, OS, install channel, version only — no paths or content).",
"isRequired": false,
"isSecret": false
}
]
}
]
}