-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathserver.json
More file actions
71 lines (71 loc) · 2.12 KB
/
server.json
File metadata and controls
71 lines (71 loc) · 2.12 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
68
69
70
71
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.xiaolai/codex-octopus",
"description": "Spawn multiple specialized Codex agents as MCP servers, each independently configured.",
"repository": {
"url": "https://github.com/xiaolai/codex-octopus",
"source": "github"
},
"version": "1.0.1",
"packages": [
{
"registryType": "npm",
"identifier": "codex-octopus",
"version": "1.0.1",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "CODEX_API_KEY",
"description": "OpenAI API key (leave unset to inherit from parent process)",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "CODEX_TOOL_NAME",
"description": "Tool name prefix (default: codex)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "CODEX_MODEL",
"description": "Model: gpt-5-codex, o3, codex-1, or full ID",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "CODEX_SANDBOX_MODE",
"description": "Sandbox: read-only, workspace-write, danger-full-access",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "CODEX_APPROVAL_POLICY",
"description": "Approval: never, on-failure, on-request, untrusted",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "CODEX_APPEND_INSTRUCTIONS",
"description": "Additional instructions appended to the default",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "CODEX_FACTORY_ONLY",
"description": "Set to true to expose only the factory wizard tool",
"isRequired": false,
"format": "string",
"isSecret": false
}
]
}
]
}