# io.github.Reachpad/reachpad-mcp (npm · @reachpad/mcp)

Persistent cloud development environments that coding agents create, run and test software in.

- Trust score: 73/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-16

## Components

- remote · `reachpad.dev`: 39/100, [markdown](https://verifymcp.io/servers/reachpad-reachpad-mcp/reachpad.md), [page](https://verifymcp.io/servers/reachpad-reachpad-mcp/reachpad)
- npm · `@reachpad/mcp`: 73/100 (this document), [markdown](https://verifymcp.io/servers/reachpad-reachpad-mcp/reachpad-mcp.md), [page](https://verifymcp.io/servers/reachpad-reachpad-mcp/reachpad-mcp)

## Channel facts

- Registry: `npm`
- Package: `@reachpad/mcp`
- Version: `0.1.4`
- 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-16.

- **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**: 84/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to Reachpad/reachpad-mcp).
  - License check failed: the license (UNLICENSED) isn't a recognized OSI-approved license.
  - Actively maintained (last published 4 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 76/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 439 tokens (~73/item across 6 items; 6 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**: 81/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 42% of tool parameters carry a description.
- **Capabilities**: 60/100
  - Spec-recency check failed: implements MCP spec 2025-06-18; 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 reachpad-reachpad-mcp -- npx -y @reachpad/mcp
```

### Codex

```bash
codex mcp add reachpad-reachpad-mcp -- npx -y @reachpad/mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add reachpad-reachpad-mcp --command npx --arg -y --arg @reachpad/mcp
```

### Hermes

```yaml
mcp_servers:
  reachpad-reachpad-mcp:
    command: "npx"
    args: ["-y", "@reachpad/mcp"]
```

### Other

```json
{
  "mcpServers": {
    "reachpad-reachpad-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@reachpad/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-16 (score 73, 0)

- [functional regression] Security disclosure: fail → unverified

### 2026-08-12 (score 73)

First indexed and scored.

## MCP tools (6)

### `create_environment` (~103 tokens)

Create environment

Create a persistent development environment: a filesystem and processes that survive between calls. Optionally clone a git repository into it. Returns the environment id used by every other tool.

Input parameters:

- `name` (string, required): Human-readable name, e.g. the repo or task.
- `ref` (string): Optional branch or tag to check out.
- `repo` (string): Optional git URL to clone into /work. Must be reachable without credentials unless the account has a mirror for it.

### `list_environments` (~22 tokens)

List environments

List this account's environments, with how many forks each has.

### `get_environment` (~47 tokens)

Inspect environment

What an environment resumes from: its head snapshot, whether that snapshot carries memory (resumes mid-process) or only disk (boots), and its fork tree.

Input parameters:

- `environment` (string, required)

### `run_command` (~152 tokens)

Run a command

Run one command in an environment and get its exit code and output. Not a shell: pass argv as a list, and ask for a shell explicitly with ["/bin/sh","-lc","…"] if you want one. A paused environment resumes to serve this.

Input parameters:

- `argv` (array, required)
- `cwd` (string)
- `env` (object)
- `environment` (string, required)
- `timeout_ms` (integer): Give up after this long. PASS IT. Clamped by the entitlement server-side, and without it the environment is allowed ten minutes — so a wedged environment costs you ten before you learn anything. Seco…

### `checkpoint_environment` (~66 tokens)

Fork environment

Fork an environment from its last sealed snapshot into a new one. The original is untouched. This is how you try several approaches from one prepared state — the fork costs a delta, not a rebuild.

Input parameters:

- `environment` (string, required)
- `name` (string): Name for the fork.

### `delete_environment` (~49 tokens)

Archive environment

Archive an environment, freeing the plan slot it holds. Nothing is deleted: its snapshots and history survive, it simply stops counting as live and can no longer be used.

Input parameters:

- `environment` (string, required)

## Diagnostics

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

## Score history

- 2026-08-16: 73
- 2026-08-15: 73
- 2026-08-14: 73
- 2026-08-13: 73
- 2026-08-12: 73

## Links

- npm package: https://www.npmjs.com/package/@reachpad/mcp
- Socket report: https://socket.dev/npm/package/@reachpad/mcp
- Repository: https://github.com/Reachpad/reachpad-mcp
- Website: https://reachpad.dev/
- Changelog RSS feed: https://verifymcp.io/servers/reachpad-reachpad-mcp/reachpad-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/reachpad-reachpad-mcp/reachpad-mcp.json
- HTML version of this page: https://verifymcp.io/servers/reachpad-reachpad-mcp/reachpad-mcp
