# SandboxAPIs (npm · @sandboxapis/mcp)

Drop-in read-only replicas of GitHub, Jira, Slack and 18 more, preloaded with one fake company.

- Trust score: 62/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-20

## Components

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

## Channel facts

- Registry: `npm`
- Package: `@sandboxapis/mcp`
- Version: `0.3.13`
- 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-09-20.

- **Supply Chain Security**: 98/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.
  - 31 of 96 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 19/100
  - Repository check failed: no source repository is declared.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 5 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 72/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 757 tokens (~75/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**: 75/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 26% of tool parameters carry a description.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 10 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 11 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); 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

### How do I install the SandboxAPIs MCP server?

SandboxAPIs runs locally as an npm package, launched with npx -y @sandboxapis/mcp. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add dev-sandboxapis-mcp -- npx -y @sandboxapis/mcp
```

### Cursor

```json
{
  "mcpServers": {
    "dev-sandboxapis-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@sandboxapis/mcp"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "dev-sandboxapis-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@sandboxapis/mcp"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add dev-sandboxapis-mcp -- npx -y @sandboxapis/mcp
```

### opencode

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

### OpenClaw

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

### Hermes

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

### Netclaw

```json
{
  "McpServers": {
    "dev-sandboxapis-mcp": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "@sandboxapis/mcp"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add dev-sandboxapis-mcp -t stdio -c npx -a -y @sandboxapis/mcp
```

### Other

```json
{
  "mcpServers": {
    "dev-sandboxapis-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@sandboxapis/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-09-19 (score 62)

First indexed and scored.

## MCP tools (10)

### `orient` (~98 tokens)

Orient in the SandboxAPIs universe

START HERE. Returns everything needed to use SandboxAPIs with no docs: the universe/theme, every API surface and its base URL (git hosts and issue trackers), live-vs-snapshot modes and how to pin, the org and its teams/repos, notable entry points (each with a ready-to-run REST path), where the coverage manifest lives, and this server's access block — whether a key is set and how many requests are left this hour.

### `check_budget` (~126 tokens)

Check the remaining request budget

Costs nothing — call it before any loop of more than a handful of requests. Returns this server's real hourly window (limit, remaining, when it resets) read from the provider's own budget endpoint, which is exempt from the budget it reports, plus whether a key is set and where to raise the limit. The window is ONE bucket per caller shared across every provider host, so the numbers apply to all of them.

Input parameters:

- `provider` (string): The host you are about to call. Optional — the budget is one shared window, so the numbers are the same for every provider.

### `list_repositories` (~45 tokens)

List the org's repositories

List repositories for the universe's org. Results are identical to the provider's REST API and carry provider-form ids (node_id / numeric id).

Input parameters:

- `provider` (string, required)

### `get_repository` (~58 tokens)

Get a repository

Fetch one repository by name (default: the flagship repo). Provider-shaped, with provider-form ids.

Input parameters:

- `provider` (string, required)
- `repo` (string): Repo name, e.g. 'parthenon'. Defaults to the flagship repo.

### `list_pull_requests` (~54 tokens)

List pull requests / merge requests

List a repo's pull requests (GitHub) or merge requests (GitLab). Optional state filter.

Input parameters:

- `provider` (string, required)
- `repo` (string)
- `state` (string): Provider state filter.

### `get_pull_request` (~72 tokens)

Get a pull/merge request with its reviews

Fetch one PR (GitHub) / MR (GitLab) plus its reviews (GitHub) / approvals (GitLab). Returns both in one result; each carries provider-form ids for cross-referencing.

Input parameters:

- `number` (integer, required)
- `provider` (string, required)
- `repo` (string)

### `list_issues` (~45 tokens)

List issues

List a repo's issues. Optional state filter (open/closed/all).

Input parameters:

- `provider` (string, required)
- `repo` (string)
- `state` (string)

### `get_user` (~50 tokens)

Get a user

Fetch a user by login/username. Provider-shaped, with provider-form ids.

Input parameters:

- `login` (string, required): The user's login (GitHub) / username (GitLab).
- `provider` (string, required)

### `search_commits_by_author` (~86 tokens)

Search commits by author

Find commits authored by a given login in a repo. Returns SHAs (identical across GitHub and GitLab, invariant #5) with a REST path to fetch each — so you can cross-reference against either provider.

Input parameters:

- `author` (string, required): Author login, e.g. 'athena'.
- `provider` (string)
- `repo` (string)

### `get_snapshot` (~49 tokens)

Get a pinned snapshot hostname

Return the pinned, reproducible hostname for a provider — point your client's base URL at it for drift-free CI. A snapshot regenerates byte-identically on every request.

Input parameters:

- `provider` (string, required)

## Diagnostics

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

## Score history

- 2026-09-20: 62
- 2026-09-19: 62

## Common questions

### What is the SandboxAPIs MCP server?

SandboxAPIs is an MCP server listed in the public MCP registry as dev.sandboxapis/mcp. Drop-in read-only replicas of GitHub, Jira, Slack and 18 more, preloaded with one fake company. This page covers its npm package (@sandboxapis/mcp).

### Is the SandboxAPIs MCP server safe to use?

SandboxAPIs scores 62 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 20 September 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the SandboxAPIs MCP server expose?

SandboxAPIs exposes 10 tools: orient, check_budget, list_repositories, get_repository, list_pull_requests, and 5 more. Their descriptions and schemas cost roughly 683 tokens of context every time the server is loaded.

### Is the SandboxAPIs MCP server still maintained?

SandboxAPIs is still listed as active in the MCP registry. We last reached this channel on 20 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

### What licence is the SandboxAPIs MCP server under?

SandboxAPIs declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

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