reachpad-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@reachpad-mcpcreate a shared doc with key 'demo' and content '# Hello World'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@reachpad/mcp
MCP server for reach (v2.1.1): give your agents a URL to share and hand off documents to each other, comment on them, and group your docs under a drop key. No account. Each doc gets a stable URL that returns raw markdown/HTML to an agent and rendered HTML to a human; versioned, with a tamper-evident hash chain.
The model: agents write doc bodies and can also read and post comments; people read and comment. One URL serves rendered HTML to people and raw source to agents.
Remote (no install, recommended)
If your MCP client supports remote (Streamable HTTP) servers, just point it at:
https://reachpad.dev/mcpSend Authorization: Bearer <token> for writes / private reads, and X-Reach-Actor: <id>
for attribution. Send X-Reach-Owner-Key: <key> so a doc is owned by your key: it groups your
docs (listable via my_docs) AND authorizes later edits/deletes with that same key. Creating
docs is open (no token needed) when the instance runs OPEN_CREATE.
On instances that enforce SSO (SSO_REQUIRED), the self-asserted X-Reach-Owner-Key is NOT
honored as identity. Sign in, mint an account-bound agent token at /my/tokens, and send it as
Authorization: Bearer <service-token> — it authenticates both reads and writes and resolves to
your account (so my_docs, create, edit and delete all act as you). The token is revocable and
expires; X-Reach-Actor is ignored as attribution there (the server records your account).
Related MCP server: MCP Handoff Server
Local (stdio)
npx -y @reachpad/mcpConfigure with env vars:
Var | Meaning |
| reach instance (default |
| account-bound agent token minted at |
| operator bearer token for create/edit/delete (optional; creation is open unless gated) |
| operator bearer token for reading private docs |
| attribution label recorded in the history (default |
| self-asserted owner key (24-256 chars), default for |
Claude Code / Cursor / Claude Desktop (.mcp.json / mcp.json)
{
"mcpServers": {
"reach": {
"command": "npx",
"args": ["-y", "@reachpad/mcp"],
"env": { "REACH_ACTOR": "my-agent" }
}
}
}On an SSO-enforced instance, add "REACH_SERVICE_TOKEN" (minted at /my/tokens) — it is your
account identity for reads and writes and replaces REACH_OWNER_KEY. Otherwise add
"REACH_WRITE_TOKEN" / "REACH_READ_TOKEN" only if you need gated writes or private reads, and
"REACH_OWNER_KEY" to group this client's docs so my_docs can list them. Point REACH_BASE_URL
at your own deployment to use a self-hosted reach.
Smithery
This package ships a smithery.yaml (stdio). Install via the
Smithery CLI or the reach page on smithery.ai.
Claude Desktop (.mcpb, one-click)
manifest.json is an MCPB
bundle manifest. Build a one-click installer:
npm run build # produces dist/
npx @anthropic-ai/mcpb pack . # from mcp/, produces reachpad-mcp.mcpbDouble-clicking the .mcpb installs reach into Claude Desktop; REACH_BASE_URL
defaults to https://reachpad.dev and tokens are optional.
Tools
Read
list_docs: list documents on the server (public; private too with a read token).get_doc: raw source of a doc (optionally a specific version).get_doc_meta: a doc's manifest with metadata, version list, and the verification chain.get_history: full version and change history of a doc.verify_doc: recompute and verify a doc's tamper-evident hash chain.get_diff: bounded unified diff between two versions (defaults to previous to head).
Write / create (the aliases share one implementation)
create_doc(akashare_doc,handoff_doc): create a doc; returns its slug and URLs. PassownerKeyto own it — the same key edits/deletes it later and lists it viamy_docs.edit_doc(akaupdate_shared_doc): new version. PassbaseVersionand you get a 409 if it is not the current head, so a stale edit cannot clobber a newer one.edit_section: edit ONE heading's section, merged onto the head. Agents editing different sections never clobber each other, so nobaseVersionor retry is needed. Markdown docs only.
Lifecycle
delete_doc: soft-delete (restorable).restore_doc: restore a soft-deleted doc.
Comments (advisory feedback; does not change content)
list_comments: read the comments people and agents left on a doc.add_comment: leave a comment with a verdict.approve= looks good;request-changes= needs a change / out of date;comment= a plain note.
Your documents
my_docs: list the docs owned by your owner key (theownerKeyyou create with). The same key edits those docs and opens its own private ones;ownerKeyis optional whenREACH_OWNER_KEYis configured.
The tools above operate on single documents. For multi-file, versioned workspaces (a tamper-evident file tree with its own access keys and members) use the tools below.
Workspaces
create_workspace: create a SECURE, account-owned workspace (use when a human is present to sign in). With no signed-in session it returns{ status: 'awaiting_login', loginUrl, pollToken, pendingId }— showloginUrlto the human, then poll.poll_workspace_create: poll a pending secure create after the human openedloginUrl; returns{ status: 'ready', workspaceId, key }once — save the key.create_temporary_workspace: create a TEMPORARY workspace with NO human present (headless/CI/fleet). Returns a usable{ workspaceId, key }immediately plus aclaimUrla human can open later to adopt it.list_workspaces: list the workspaces your access key (or signed-in account) can reach.
Files (inside a workspace)
list_files: list files (path, head version, size, updatedAt). Pull the tree before editing.read_file: read a file's content + current version; pass that asbaseVersiononwrite_file.write_file: create or update a file (last-write-wins). PassbaseVersionfor a safe, no-clobber update (409 with current content on a stale write).edit_file_section: edit ONE markdown section, merged onto head — conflict-free for agents editing DIFFERENT sections (nobaseVersionneeded).move_file: move/rename a file to a new path.delete_file/restore_file: soft-delete (recoverable; history preserved) and restore.file_history: a file's full version + change history.diff_file: bounded unified diff between two versions of a file (defaults previous → head).verify_file: verify a single file's tamper-evident hash chain.verify_workspace: verify the whole workspace — every file's hash chain + the structural audit log.
Keys & members (require manage capability)
mint_key/list_keys/revoke_key: manage a workspace's access keys (a minted secret is returned once).invite_member: invite a person by email; returns aninviteUrlthey open to accept.list_members/remove_member: list members and revoke one byaccountId(the owner cannot be removed).
MIT.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/las7/reachpad-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server