Rockhopper MCP Server
OfficialClick 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., "@Rockhopper MCP Serverlist enrolled files"
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.
Rockhopper MCP Server
MCP (Model Context Protocol) server for Rockhopper. Lets AI tools like Claude, Cursor, and Copilot interact with your Rockhopper workspace — enrolled files, version history, reviews, comments, and cell-level change tracking.
Prerequisites
Node.js 18+
A Rockhopper account with at least one enrolled file
(Optional) A Personal Access Token — only required for headless / CI / scripted setups
Authentication
The server supports two auth modes. OAuth (recommended) is the default — no token to copy and paste. PAT stays available for headless scenarios.
OAuth (recommended)
On first launch, the server prints a short verification code to stderr and a URL to visit. Sign in once in your browser — the resulting bearer token is stored in your OS keychain (Keychain on macOS, Credential Manager on Windows, libsecret on Linux). Subsequent launches pick the token up silently.
Nothing to configure — just launch the server with no ROCKHOPPER_TOKEN set:
npx @rockhopper-co/mcp-serverYou'll see (on stderr):
Rockhopper — sign in to authorize this MCP client.
Open: https://app.rockhopper.co/device?user_code=ABCD2345
(or visit https://app.rockhopper.co/device and enter code: ABCD2345)Tokens default to a 60-minute lifetime. When yours expires, the next launch silently re-runs the device flow.
Linux: requires
libsecretto be installed (apt-get install libsecret-1-devon Debian/Ubuntu,dnf install libsecreton Fedora). If unavailable, fall back to the PAT path below.
Personal Access Token (headless / CI)
For non-interactive setups, generate a PAT in the Rockhopper web app under Settings > Personal Access Tokens (read-only or read-write scope) and set it as ROCKHOPPER_TOKEN. PATs take precedence over OAuth — if ROCKHOPPER_TOKEN is set, the device-grant flow is skipped.
Setup
1. Install
npm install -g @rockhopper-co/mcp-serverOr run directly with npx:
npx @rockhopper-co/mcp-server2. Configure your AI tool
Claude Desktop / Claude Code
Add to your MCP config (~/.claude/mcp.json or Claude Desktop settings):
{
"mcpServers": {
"rockhopper": {
"command": "npx",
"args": ["-y", "@rockhopper-co/mcp-server"],
"env": {
"ROCKHOPPER_API_URL": "https://api.rockhopper.co"
}
}
}
}Leave ROCKHOPPER_TOKEN out to use OAuth (recommended). Set it if you want PAT auth instead.
Cursor
Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"rockhopper": {
"command": "npx",
"args": ["-y", "@rockhopper-co/mcp-server"],
"env": {
"ROCKHOPPER_API_URL": "https://api.rockhopper.co"
}
}
}
}Environment Variables
Variable | Required | Default | Description |
| No | — | Personal Access Token (starts with |
| No |
| Rockhopper API base URL |
Postman
A starter Postman collection + environment files are available in
postman/ for gateway smoke testing (/healthz, /mcp initialize,
/mcp tools/list) across local/dev/staging/production.
Regenerate artifacts with:
npm run generate:postmanAvailable Tools
Tool | Description |
| List enrolled Excel files with optional search filter |
| Get version history for a specific file |
| Get comments and threaded discussions on a file |
| Get review requests for a version or file |
| Get change history for a specific cell across versions |
| Search enrolled files by name |
| Get pending cell changes not yet committed to a version |
Available Resources
Resource | URI | Description |
Enrolled Files |
| All enrolled files in workspace |
File Detail |
| Details for a specific file |
File Versions |
| Version history for a file |
Version Detail |
| Single version details |
File Comments |
| Comments on a file |
Version Reviews |
| Reviews for a version |
Review Detail |
| Single review details |
Team Detail |
| Team details with members |
Unattributed Changes |
| Pending changes |
Available Prompts
Prompt | Description |
| Summarize recent version changes and unattributed edits for a file |
| Show all pending review requests for the latest version of a file |
| List all unresolved comments on a file for follow-up |
| Comprehensive overview: versions, comments, reviews, and changes |
Write Tools (requires read-write scope)
Tool | Description |
| Commit uncommitted changes as a new semver version (major/minor/patch) |
| Discard all uncommitted changes, revert to latest committed version |
| Add a comment to an enrolled file (optionally at a cell) |
| Reply to an existing comment thread |
| Mark a comment as resolved (author only) |
| Request a review on a file version |
| Approve a review request (assigned reviewer only) |
| Cancel a pending review request (requester only) |
| Update the display name of an enrolled file |
Development
# Install dependencies
npm install
# Run in dev mode (auto-restart on changes)
npm run dev
# Build
npm run build
# Run tests
npm test
# Type check
npm run typecheckSecurity
Tokens are scoped to the creating user — the MCP server can only access data the user has permission to see
read-onlytokens cannot perform write operations (comments, reviews)All API calls go through Rockhopper's existing authorization guards
Tokens can be revoked instantly from the Settings page
The MCP server runs locally and communicates with the API over HTTPS
Architecture
AI Tool (Claude/Cursor) <--stdio--> mcp-server <--HTTPS--> Rockhopper API <--> PostgreSQLThe MCP server is a thin adapter. It translates MCP tool/resource requests into Rockhopper REST API calls, authenticated with the user's PAT. All authorization is enforced server-side — the MCP server has no direct database access.
This server cannot be installed
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/Rockhopper-Co/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server