io.github.sanchirico/camacho-mcp
NPM · CAMACHO-MCP · SCANNED AUG 3
Persistent tmux terminal for AI agents — real-time spectating, SSH host-group dispatch.
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 Security100
- No malware found by supply-chain analysis.Pass
- No known CVEs affecting this package version or its production dependencies.Pass
- No install/post-install scripts declared.Pass
- No production dependencies, so there is no dependency health to assess. View diagnostics → Pass
Provenance & Transparency19
- Repository check failed: the declared repository URL returned HTTP 404. See how to fix → View diagnostics → Fail
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 159 days ago).Pass
- Security-disclosure policy not yet verified: we couldn't inspect the source repository.Unverified
Schema Quality & AI Usability77
- AI-judged instruction clarity (excellent).Pass
- Tool/resource definitions use about 996 tokens (~99/item across 10 items; 10 tools + 0 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
- Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
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
Capabilities20
- Spec-recency check failed: implements MCP spec 2024-11-05; the latest is 2026-07-28. See how to fix → Fail
Unverified: 1 category
A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.
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 · camacho-mcp
claude mcp add sanchirico-camacho-mcp -- npx -y camacho-mcp
codex mcp add sanchirico-camacho-mcp -- npx -y camacho-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"sanchirico-camacho-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"camacho-mcp"
],
"enabled": true
}
}
} openclaw mcp add sanchirico-camacho-mcp --command npx --arg -y --arg camacho-mcp
mcp_servers:
sanchirico-camacho-mcp:
command: "npx"
args: ["-y", "camacho-mcp"] {
"mcpServers": {
"sanchirico-camacho-mcp": {
"command": "npx",
"args": [
"-y",
"camacho-mcp"
]
}
}
} 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.
- 2 Aug 26 +15
- Malware scan: unverified → pass ▲ security
- 1 Aug 26 −12
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 31 Jul 26 −18
- Malware scan: pass → unverified ▼ security
- 27 Jul 26 +34
- Tool coverage: unverified → 100 ▲ functional
- First check of Tool coverage: 100 functional
- First check of Schema quality: fail functional
- First check of Schema quality: excellent functional
- First check of Schema quality: pass functional
- 26 Jul 26 41
First indexed and scored.
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
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 0 packages
0 packages in the resolved dependency tree.
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.
execute_async ~84
Fire a command and return immediately without waiting for output. Use get_pane_output later to read results. Ideal for long-running commands (builds, servers, tests).
| Name | Type | Req | Description |
|---|---|---|---|
| command | string | yes | The shell command to execute. |
| pane | string | — | Target pane as 'window.pane' (e.g. '0.0'). Defaults to '0.0'. |
No output schema declared.
No examples provided.
get_pane_output ~71
Read the current terminal output from any pane without running a command. Use after execute_async to check if a command finished, or to monitor a running process.
| Name | Type | Req | Description |
|---|---|---|---|
| pane | string | — | Target pane as 'window.pane' (e.g. '0.0'). Defaults to '0.0'. |
No output schema declared.
No examples provided.
list_panes ~37
List all active panes across all windows in the camacho-mcp session. Shows pane ID, current command, and size for each pane.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
open_spectator ~63
Open a spectator terminal window attached to the camacho-mcp tmux session. Auto-detects platform: Windows Terminal, Terminal.app (macOS), or gnome-terminal/konsole/xterm (Linux). Lets you watch the AI work in real-time.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
pane_status ~84
Check if a pane is running a command or idle at a prompt. Returns the current foreground process — if it's a shell (bash, zsh, etc.) the pane is idle. Anything else means a command is still running.
| Name | Type | Req | Description |
|---|---|---|---|
| pane | string | — | Target pane as 'window.pane' (e.g. '0.0'). Defaults to '0.0'. |
No output schema declared.
No examples provided.
president_camacho_execute ~325
Run a shell command inside the camacho-mcp tmux session. Pass `panes` to run the same command in multiple panes at once. Pass `hosts` with SSH host patterns (e.g. ['webserver*']) to auto-spawn panes, SSH in, and run in parallel. Returns captured terminal output. Dangerous commands (sudo, rm, reboot, etc.) are blocked.
| Name | Type | Req | Description |
|---|---|---|---|
| command | string | yes | The shell command to execute in the camacho-mcp tmux session. |
| hosts | array | — | SSH host patterns from ~/.ssh/config (e.g. ['webserver*', 'db1']). Auto-spawns panes, SSHs into each host, and runs the command in parallel across all of them. |
| pane | string | — | Single target pane as 'window.pane' (e.g. '0.0', '0.2'). Defaults to '0.0'. Ignored if `panes` or `hosts` is provided. |
| panes | array | — | Run the command in multiple panes at once. Each entry is 'window.pane' (e.g. ['0.0', '0.1', '0.2']). |
| timeout | number | — | Max time in ms to wait for output when using `wait` mode. Defaults to 30000 (30s). |
| wait | — | — | Enable quiescence-based output: waits for output to stabilize instead of using a fixed delay. Pass true for default 500ms stability window, or a number for custom stability window in ms. |
No output schema declared.
No examples provided.
reset_panes ~33
Kill all extra windows and panes, reset to default 2-pane side-by-side layout (50/50 even-horizontal).
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
screen_snapshot ~105
Capture the rendered terminal screen with ANSI colors — what a human would see. Useful for full-screen programs (top, htop, vim) where plain text capture loses layout. Includes pane status (running/idle) and current command.
| Name | Type | Req | Description |
|---|---|---|---|
| pane | string | — | Target pane as 'window.pane' (e.g. '0.0'). Defaults to '0.0'. |
| scrollback | number | — | Number of scrollback lines to include (default: 200). |
No output schema declared.
No examples provided.
send_keys ~157
Send raw key sequences to a pane (Ctrl+C, Ctrl+D, Enter, Escape, arrow keys, etc.). Uses tmux key names: C-c (Ctrl+C), C-d (Ctrl+D), Enter, Escape, Up, Down, Left, Right, BSpace, Tab, Space. Useful for interrupting builds, exiting REPLs, or navigating interactive programs.
| Name | Type | Req | Description |
|---|---|---|---|
| keys | string | yes | The key sequence to send (e.g. 'C-c' for Ctrl+C, 'C-d' for Ctrl+D, 'Enter', 'Escape', 'Up', 'q'). |
| pane | string | — | Target pane as 'window.pane' (e.g. '0.0'). Defaults to '0.0'. |
No output schema declared.
No examples provided.
spawn_pane ~37
Split a new pane in the camacho-mcp tmux session. Auto-overflows to new windows when MAX_PANES is reached.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.