Durable cloud environments any coding agent can call: run commands, fork, resume.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
reachpad lets Claude, Codex and other coding agents build full-stack apps in persistent workspaces and share them by link, without a separate deployment. A workspace is a cloud development computer an agent operates itself: a repo, a filesystem, installed dependencies and build state that all survive between calls, not an ephemeral sandbox that forgets. Processes are the exception; see below.
This is the MCP server. It lets Claude, ChatGPT, Cursor, OpenCode or your own agent create a workspace, run commands in it, fork it, and come back to it later, without a developer keeping a laptop open for them.
The API is the product boundary, not a web UI: reachpad.dev.
In Claude Code:
stdio is what a local client talks to; Streamable HTTP is what a remote connector talks to. Same tools, same behaviour β added rather than forked, because two implementations of one surface is how they drift.
The HTTP side answers 405 to GET: every tool here is request/response, and
the spec permits declining the server-initiated stream rather than holding a
connection open for traffic that never comes. There are no sessions β
nothing is held across calls that a restart could not rebuild. And it carries
no credential of its own: whatever authorizes the HTTP request is what
authorizes reachpad.
| variable | meaning |
|---|---|
REACHPAD_ENDPOINT | your reachpad host. Plaintext http:// to anything but loopback is refused before a socket opens. |
REACHPAD_IDENTITY_CREDENTIAL | your per-user credential. It names one account and can act for no other β the server takes the identity from the credential's own record, never from the request. |
REACHPAD_API_KEY | optional, per-workspace scoped and revocable. When set, run_command uses it and needs no identity exchange. |
REACHPAD_MCP_HTTP_PORT | serve HTTP instead of stdio. |
REACHPAD_MCP_HTTP_HOST | default 127.0.0.1. This process bridges to a control plane with your credentials, so binding it to the world is a decision made on purpose, behind a proxy that terminates TLS. |
REACHPAD_MCP_HTTP_TOKEN | bearer token, compared in constant time. Absent, every caller that can reach the port is authorized, and the server says so on stderr. |
REACHPAD_MCP_ALLOWED_ORIGINS | comma-separated. A request carrying an unlisted Origin is refused β a browser cannot forge it, which closes DNS rebinding. No Origin at all is a non-browser client and is allowed. |
If several credentials are set, the narrowest wins, and a refused credential is never retried under a broader one β falling back would be privilege escalation nobody chose to perform.
| tool | what it does |
|---|---|
get_credit_balance() | remaining compute credits. One credit runs one standard workspace for one minute. |
create_workspace(repo?, ref?, name?) | a new workspace, optionally with a repository cloned into $HOME/work. Reachpad generates its display name when omitted. |
list_workspaces() | your workspaces and how many forks each has |
get_workspace(workspace) | what it boots from: its head snapshot, its log position and its fork tree |
run_command(workspace, argv, cwd?, env?, timeout_ms?) | one command, its exit code and its output. A paused workspace resumes to serve it. |
checkpoint_workspace(workspace, name?) | fork from the last sealed snapshot; the original is untouched |
expose_port(workspace, port, check?) | open a port to the web and get the link that reaches it. Idempotent per port. |
list_ports(workspace) | the ports this workspace has open, oldest first, with their links |
revoke_port(workspace, port) | close one port. Re-opening it later mints a different link. |
delete_workspace(workspace) | archive it and free the plan slot. Nothing is deleted β snapshots and history survive. |
Renamed in 0.4.0. Six tools used to be spelled *_environment and took an
environment argument, while the CLI, the manual and the dashboard all said
workspace. There was only ever one object; now there is only one word for it.
The old names and the old argument still work and are not advertised, so
nothing that already calls them breaks β but write new calls against the
workspace spelling.
Not here, deliberately: starting an agent inside the workspace. It is in reachpad's roadmap and not in the fleet yet β a tool that always fails costs a model a turn and teaches it to distrust the rest, so this server advertises nothing it cannot serve.
Worth reading before you hand one to somebody, because none of it is discoverable from the URL:
expose_port dials the port afterwards and tells you if nothing
answered, because a link to a port nothing is serving looks exactly like a
link that works. Pass check: false to skip it β the dial resumes a paused
workspace.REACHPAD_API_KEY, the key must be --role owner. A
collaborator key is refused: listing hands back live tokens, and a token is
a capability.These are the ways a naive client of a streaming exec API misleads a model, and what this one does instead.
No network and no credentials. The protocol suite spawns the shipped server as a child process and speaks real JSON-RPC over its stdio against a stub control plane on a real socket, so nothing under test is an internal import. One test runs the same arc against a real reachpad and skips when no endpoint is configured.
This repository is the source. It is deliberately separate from the reachpad backend: this code is public, it is published to npm, and its release workflow holds publishing rights β none of which belong in the same repository as the control plane. Nothing here can read the backend's source, and no job in the backend copies files out to here.
Two server constants are mirrored in src/client.js β the exec grace period
and the default exec timeout. A mirrored constant normally rots; this one does
not, because the backend's own CI fetches this published package and fails if
they disagree. The check lives where the number would change.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/reachpad-mcp)<a href="https://allmcps.com/mcp/reachpad-mcp"><img src="https://allmcps.com/api/badge/reachpad-mcp?style=directory" alt="Reachpad MCP on AllMCPs" /></a>