ripper-mcp
Exposes Ripper CRM tools (contacts, listings, tasks, notes, timeline, search) to any MCP client via a dynamic tool catalog.
README
ripper-mcp
A lightweight, local MCP server for Ripper. It exposes everything the in-app assistant can do — contacts, listings, tasks, notes, timeline, and cross-CRM search — to any MCP client (Claude Desktop, Claude Code, Cursor, …), authenticated as your own Ripper account.
It's a thin, generic shell: it knows no individual tool. It reads the tool catalog from the deployed Ripper backend at runtime and dispatches every call through a single gateway. So:
- Tool changes are live. It polls the backend's manifest; when the catalog
changes it swaps its tool list and emits
notifications/tools/list_changed— no reinstall, no restart. - The client stays current on its own. Launched via
npx ripper-mcp@latest, every start fetches the newest version. A rare backendshellVersionbump just prints an update notice.
The backend half of this (the
mcp.*gateway) lives in the private Ripper app. This repo is only the local client.
Quick start
# 1. Log in once (browser SSO — your normal Google sign-in). Caches a personal
# token at ~/.ripper/credentials.json (chmod 0600).
npx ripper-mcp@latest login
# 2. Check state
npx ripper-mcp@latest status
login starts a loopback listener and opens the /mcp/connect consent page.
Sign in, click Approve, and the authorization code is redirected straight
back to the CLI on 127.0.0.1 and exchanged for your token (PKCE — see below).
Wire it into a client
Claude Desktop — claude_desktop_config.json:
{
"mcpServers": {
"ripper": {
"command": "npx",
"args": ["-y", "ripper-mcp@latest"]
}
}
}
Claude Code — .mcp.json (or claude mcp add):
{
"mcpServers": {
"ripper": { "command": "npx", "args": ["-y", "ripper-mcp@latest"] }
}
}
Prefer a global install? npm i -g ripper-mcp then use "command": "ripper-mcp".
How it fits together
Claude Desktop / Cursor ──stdio──▶ ripper-mcp (local) ──HTTPS──▶ Ripper backend (Convex)
│ ├─ mcp.getManifest (tool catalog + versions)
│ ├─ mcp.callTool (runs a tool as you)
└─ ~/.ripper/credentials.json ├─ mcp.authorize (browser consent → code)
└─ mcp.token (PKCE exchange → token)
Login uses OAuth 2.0 Authorization Code + PKCE with a loopback redirect
(RFC 8252 — the same native-app flow as gh / gcloud): login starts a
listener on 127.0.0.1, opens the consent page, and after you approve, the
authorization code is redirected to your own loopback and exchanged (with the
PKCE verifier that never leaves this machine) for a 90-day access token. Only the
token's SHA-256 hash is stored on the backend; no password is ever handled here.
Commands
ripper-mcp # start the stdio server (default)
ripper-mcp serve # explicit
ripper-mcp login # browser-SSO login, cache token
ripper-mcp logout # clear cached token
ripper-mcp status # show config + login state
Configuration
Resolution order for every setting: CLI flag → env var → ~/.ripper/credentials.json → default.
| Setting | Flag | Env var | Default |
|---|---|---|---|
| Backend URL | --convex-url |
RIPPER_CONVEX_URL |
reliable-bullfrog-975 (production) |
| App URL | --app-url |
RIPPER_APP_URL |
https://rippr.dev (production) |
| Token | — | RIPPER_MCP_TOKEN |
cached after login |
| Poll period | — | RIPPER_MCP_POLL_MS |
60000 (min 10000) |
Update controls:
| Env var | Effect |
|---|---|
RIPPER_MCP_NO_SELFUPDATE=1 |
Suppress the "newer version available" notice. |
RIPPER_MCP_AUTO_UPDATE=1 |
Also run npm i -g ripper-mcp@latest in the background when behind. |
Security notes
- PKCE + loopback means an authorization code is only ever delivered to
your
127.0.0.1, and can't be exchanged for a token without the verifier that never leaves this machine — so a phished or intercepted code is useless to anyone else. The listener binds to loopback only and checks thestate. - Tokens expire after 90 days and are revocable. Only their SHA-256 hash is
stored server-side; the plaintext is returned to the CLI once and cached at
~/.ripper/credentials.json(chmod 0600). - Rotate/revoke by running
ripper-mcp logoutthenloginagain (or revoking the token from the Ripper app). Treat the credentials file like any credential.
Development
npm install
npm run check # syntax-check all sources
node bin.mjs status
Run against a non-default deployment with --convex-url / RIPPER_CONVEX_URL.
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。