# io.github.sanchirico/camacho-mcp (npm · camacho-mcp)

Persistent tmux terminal for AI agents — real-time spectating, SSH host-group dispatch.

- Trust score: 60/100 (medium)
- Change this week: −15
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `camacho-mcp`: 60/100 (this document), [markdown](https://verifymcp.io/servers/sanchirico-camacho-mcp/camacho-mcp.md), [page](https://verifymcp.io/servers/sanchirico-camacho-mcp/camacho-mcp)

## Channel facts

- Registry: `npm`
- Package: `camacho-mcp`
- Version: `1.0.0`
- Transport: `stdio`

## Trust breakdown

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. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 100/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - No production dependencies, so there is no dependency health to assess.
- **Provenance & Transparency**: 19/100
  - Repository check failed: the declared repository URL returned HTTP 404.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 159 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 996 tokens (~99/item across 10 items; 10 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 20/100
  - Spec-recency check failed: implements MCP spec 2024-11-05; the latest is 2026-07-28.

**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.

## Install

### Claude

```bash
claude mcp add sanchirico-camacho-mcp -- npx -y camacho-mcp
```

### Codex

```bash
codex mcp add sanchirico-camacho-mcp -- npx -y camacho-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "sanchirico-camacho-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "camacho-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add sanchirico-camacho-mcp --command npx --arg -y --arg camacho-mcp
```

### Hermes

```yaml
mcp_servers:
  sanchirico-camacho-mcp:
    command: "npx"
    args: ["-y", "camacho-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "sanchirico-camacho-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "camacho-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 60, +15)

- [security improvement] Malware scan: unverified → pass

### 2026-08-01 (score 45, −12)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-31 (score 57, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 75, +34)

- [functional improvement] 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

### 2026-07-26 (score 41)

First indexed and scored.

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

## MCP tools (10)

### `president_camacho_execute` (~325 tokens)

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.

Input parameters:

- `command` (string, required): 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.

### `reset_panes` (~33 tokens)

Kill all extra windows and panes, reset to default 2-pane side-by-side layout (50/50 even-horizontal).

### `spawn_pane` (~37 tokens)

Split a new pane in the camacho-mcp tmux session. Auto-overflows to new windows when MAX_PANES is reached.

### `execute_async` (~84 tokens)

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).

Input parameters:

- `command` (string, required): The shell command to execute.
- `pane` (string): Target pane as 'window.pane' (e.g. '0.0'). Defaults to '0.0'.

### `get_pane_output` (~71 tokens)

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.

Input parameters:

- `pane` (string): Target pane as 'window.pane' (e.g. '0.0'). Defaults to '0.0'.

### `list_panes` (~37 tokens)

List all active panes across all windows in the camacho-mcp session. Shows pane ID, current command, and size for each pane.

### `send_keys` (~157 tokens)

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.

Input parameters:

- `keys` (string, required): 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'.

### `pane_status` (~84 tokens)

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.

Input parameters:

- `pane` (string): Target pane as 'window.pane' (e.g. '0.0'). Defaults to '0.0'.

### `screen_snapshot` (~105 tokens)

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.

Input parameters:

- `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).

### `open_spectator` (~63 tokens)

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.

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/sanchirico-camacho-mcp/camacho-mcp#diagnostics

## Score history

- 2026-08-03: 60
- 2026-08-02: 60
- 2026-08-01: 45
- 2026-07-31: 57
- 2026-07-29: 75
- 2026-07-28: 75
- 2026-07-27: 75
- 2026-07-26: 41

## Links

- npm package: https://www.npmjs.com/package/camacho-mcp
- Socket report: https://socket.dev/npm/package/camacho-mcp
- Changelog RSS feed: https://verifymcp.io/servers/sanchirico-camacho-mcp/camacho-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/sanchirico-camacho-mcp/camacho-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/sanchirico-camacho-mcp/camacho-mcp
