claude-octopus 1.0.3 → 1.0.5

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.
Files changed (2) hide show
  1. package/package.json +2 -1
  2. package/server.json +71 -0
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "claude-octopus",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "One brain, many arms — spawn multiple specialized Claude Code agents as MCP servers",
5
+ "mcpName": "io.github.xiaolai/claude-octopus",
5
6
  "type": "module",
6
7
  "bin": {
7
8
  "claude-octopus": "dist/index.js"
package/server.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.xiaolai/claude-octopus",
4
+ "description": "Spawn multiple specialized Claude Code agents as MCP servers, each independently configured.",
5
+ "repository": {
6
+ "url": "https://github.com/xiaolai/claude-octopus",
7
+ "source": "github"
8
+ },
9
+ "version": "1.0.5",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "claude-octopus",
14
+ "version": "1.0.5",
15
+ "transport": {
16
+ "type": "stdio"
17
+ },
18
+ "environmentVariables": [
19
+ {
20
+ "name": "ANTHROPIC_API_KEY",
21
+ "description": "Anthropic API key (leave unset to inherit from parent process)",
22
+ "isRequired": false,
23
+ "format": "string",
24
+ "isSecret": true
25
+ },
26
+ {
27
+ "name": "CLAUDE_TOOL_NAME",
28
+ "description": "Tool name prefix (default: claude_code)",
29
+ "isRequired": false,
30
+ "format": "string",
31
+ "isSecret": false
32
+ },
33
+ {
34
+ "name": "CLAUDE_MODEL",
35
+ "description": "Model: sonnet, opus, haiku, or full ID",
36
+ "isRequired": false,
37
+ "format": "string",
38
+ "isSecret": false
39
+ },
40
+ {
41
+ "name": "CLAUDE_PERMISSION_MODE",
42
+ "description": "Permission mode: default, acceptEdits, bypassPermissions, plan",
43
+ "isRequired": false,
44
+ "format": "string",
45
+ "isSecret": false
46
+ },
47
+ {
48
+ "name": "CLAUDE_ALLOWED_TOOLS",
49
+ "description": "Comma-separated list of available tools (e.g. Read,Grep,Glob for read-only)",
50
+ "isRequired": false,
51
+ "format": "string",
52
+ "isSecret": false
53
+ },
54
+ {
55
+ "name": "CLAUDE_APPEND_PROMPT",
56
+ "description": "Additional system prompt appended to the default",
57
+ "isRequired": false,
58
+ "format": "string",
59
+ "isSecret": false
60
+ },
61
+ {
62
+ "name": "CLAUDE_FACTORY_ONLY",
63
+ "description": "Set to true to expose only the factory wizard tool",
64
+ "isRequired": false,
65
+ "format": "string",
66
+ "isSecret": false
67
+ }
68
+ ]
69
+ }
70
+ ]
71
+ }