io.github.xiaolai/claude-octopus
NPM · CLAUDE-OCTOPUS · SCANNED AUG 3
Spawn multiple specialized Claude Code agents as MCP servers, each independently configured.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (107 of 111), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (107 of 111), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (ISC).Pass
- Actively maintained (last published 46 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability66
- AI-judged instruction clarity (good).Pass
- Context-footprint check failed: tool/resource definitions use about 728 tokens (~145/item across 5 items; 5 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
- Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · claude-octopus
claude mcp add xiaolai-claude-octopus -- npx -y claude-octopus
codex mcp add xiaolai-claude-octopus -- npx -y claude-octopus
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"xiaolai-claude-octopus": {
"type": "local",
"command": [
"npx",
"-y",
"claude-octopus"
],
"enabled": true
}
}
} openclaw mcp add xiaolai-claude-octopus --command npx --arg -y --arg claude-octopus
mcp_servers:
xiaolai-claude-octopus:
command: "npx"
args: ["-y", "claude-octopus"] {
"mcpServers": {
"xiaolai-claude-octopus": {
"command": "npx",
"args": [
"-y",
"claude-octopus"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 3 Aug 26 +1
No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.
- 2 Aug 26 +46
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Security disclosure: fail → unverified ▼ functional
- Tool coverage: 100 → unverified ▼ functional
- Schema quality: unverified → good ▲ functional
- Maintenance: unverified → pass ▲ functional
- Stability: unverified → 0.20 ▲ functional
- License: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Licence: ISC functional
- 31 Jul 26 −7
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 30 Jul 26 −18
- Malware scan: pass → unverified ▼ security
- 28 Jul 26 +21
- Tool coverage: unverified → 100 ▲ functional
- First check of Schema quality: unverified functional
- First check of Schema quality: fail functional
- First check of Schema quality: fail functional
- First check of Tool coverage: 100 functional
- 27 Jul 26 24
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 107 packages
107 packages in the resolved dependency tree · 107 deprecated · 30 stale · 8 without a linked repository.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
claude_code ~293
Send a task to an autonomous Claude Code agent. It reads/writes files, runs shell commands, searches codebases, and handles complex software engineering tasks end-to-end. Returns the result text plus a session_id for follow-ups via claude_code_reply.
| Name | Type | Req | Description |
|---|---|---|---|
| additionalDirs | array | — | Extra directories the agent can access for this invocation |
| cwd | string | — | Working directory (overrides CLAUDE_CWD) |
| disallowedTools | array | — | Additional tools to block (unions with server-level blacklist) |
| effort | string | — | Thinking effort override |
| maxBudgetUsd | number | — | Max spend in USD |
| maxTurns | integer | — | Max conversation turns |
| model | string | — | Model override (e.g. "sonnet", "opus", "haiku") |
| permissionMode | string | — | Permission mode override (can only tighten, never loosen) |
| plugins | array | — | Additional plugin paths to load for this invocation (unions with server-level plugins) |
| prompt | string | yes | Task or question for Claude Code |
| run_id | string | — | Workflow run ID — groups related agent calls into one timeline. Auto-generated if omitted; returned in every response for propagation. |
| systemPrompt | string | — | Additional system prompt (appended to server default) |
| tools | array | — | Restrict available tools to this list (intersects with server-level restriction) |
No output schema declared.
No examples provided.
claude_code_reply ~138
Continue a previous claude_code conversation by session ID. Use this for follow-up questions, iterative refinement, or multi-step workflows that build on prior context.
| Name | Type | Req | Description |
|---|---|---|---|
| cwd | string | — | Working directory override |
| maxBudgetUsd | number | — | Max spend in USD |
| maxTurns | integer | — | Max conversation turns |
| model | string | — | Model override |
| prompt | string | yes | Follow-up instruction or question |
| run_id | string | — | Workflow run ID — pass the same run_id from the original call to keep entries grouped. |
| session_id | string | yes | Session ID from a prior claude_code response |
No output schema declared.
No examples provided.
claude_code_report ~106
Generate a self-contained HTML report of a workflow run. No args: list all runs. run_id: detailed report for that run with agent sequence, cost breakdown, and collapsible transcripts. Save the returned HTML to a file and open in a browser.
| Name | Type | Req | Description |
|---|---|---|---|
| include_transcripts | boolean | — | Include full session transcripts in run reports (default: true, requires session persistence) |
| run_id | string | — | Generate detailed report for this run. Omit to list all runs. |
No output schema declared.
No examples provided.
claude_code_timeline ~92
Query the cross-agent workflow timeline. No args: list all runs. run_id: show one run's agent sequence. session_id: retrieve timeline entry and session metadata. Use claude_code_transcript for full transcripts.
| Name | Type | Req | Description |
|---|---|---|---|
| run_id | string | — | Show all entries for this workflow run, ordered by time |
| session_id | string | — | Retrieve timeline entry and session metadata for a specific session |
No output schema declared.
No examples provided.
claude_code_transcript ~99
Retrieve the full conversation transcript for a session from Claude Code's storage. Returns chronological user/assistant messages. Use session_id from a prior query or timeline lookup.
| Name | Type | Req | Description |
|---|---|---|---|
| include_system | boolean | — | Include system messages (default: false) |
| limit | integer | — | Maximum number of messages to return |
| offset | integer | — | Skip this many messages from the start |
| session_id | string | yes | Session ID to retrieve transcript for |
No output schema declared.
No examples provided.