Vruum MCP
Provides AI agents with access to Vruum's AI revenue platform, enabling outbound, deals, pipeline, and CRM automation with 155 tools for searching, managing people, deals, outreach, and engagement, while your AI harness authors all sales and marketing prose.
README
Vruum MCP (@vruum/mcp)
Official MCP access to Vruum, the AI revenue platform. Give your agent the whole revenue motion — research prospects, build pipeline, run email and LinkedIn outreach, triage replies, manage deals through close, and read Stripe-backed revenue truth — through 29 compound tools rather than a sprawl of endpoints.
This package is a stdio bridge: it serves the tool surface locally (no credentials needed to introspect) and proxies execution to https://api.vruum.ai/mcp under your token. Every call is authorized server-side — the bridge grants no authority your Vruum account doesn't already have.
[!TIP] Using a client that supports remote MCP? Connect directly instead. Claude Code, Claude Desktop, Cursor, Codex and friends should point straight at
https://api.vruum.ai/mcp(OAuth 2.1). Fewer moving parts and no token in an env var. This bridge exists for stdio-only clients and for credential-free tool introspection. See vruum.ai/docs/mcp.
Quickstart
You need Node 20+ and a Vruum account. Create a personal access token in the web app under Settings → API tokens (vk_live_…).
<details open> <summary><b>Claude Desktop / Claude Code</b> — <code>claude_desktop_config.json</code> or <code>.mcp.json</code></summary>
{
"mcpServers": {
"vruum": {
"command": "npx",
"args": ["-y", "@vruum/mcp"],
"env": { "VRUUM_MCP_TOKEN": "vk_live_…" }
}
}
}
</details>
<details> <summary><b>Cursor</b> — <code>~/.cursor/mcp.json</code></summary>
{
"mcpServers": {
"vruum": {
"command": "npx",
"args": ["-y", "@vruum/mcp"],
"env": { "VRUUM_MCP_TOKEN": "vk_live_…" }
}
}
}
</details>
<details> <summary><b>Codex CLI</b> — <code>~/.codex/config.toml</code></summary>
[mcp_servers.vruum]
command = "npx"
args = ["-y", "@vruum/mcp"]
env = { VRUUM_MCP_TOKEN = "vk_live_…" }
</details>
<details> <summary><b>Already use the Vruum CLI?</b> — no token needed here</summary>
npx @vruum/cli
vruum login --token vk_live_…
Credentials land in ~/.vruum/credentials and the bridge picks them up automatically — omit the env block entirely.
</details>
Verify it works without configuring anything:
npx -y @modelcontextprotocol/inspector --cli npx -y @vruum/mcp --method tools/list
What you can ask for
Once connected, these are ordinary requests to your agent:
| You say | What happens |
|---|---|
| "What should I work on today?" | get_daily_briefing — pending approvals, new replies, stalled deals, warm paths, one recommended next action |
| "Review my outreach drafts" | get_outreach_review → you approve, edit, or reject each one |
| "Research Acme Corp and tell me if they fit" | research — website, funding, careers signals, ICP match with reasoning |
| "Find a warm intro to this person" | find_warm_path — separates verified paths from unverified connector candidates |
| "Which campaigns are actually working?" | get_campaign_outcomes — contacted, replies, meetings booked, cohort-consistent |
| "What's at risk in my pipeline?" | inspect_pipeline — the 5 most at-risk deals, risk-first |
| "Draft a LinkedIn post about X" | manage_content — your agent writes it, you approve, Vruum schedules and publishes |
[!IMPORTANT] Your agent writes the prose — the server never does. Outreach copy, replies, LinkedIn posts and comments surface to your harness as work items. Vruum schedules, gates, persists and sends; it has no server-side message generation. That's a deliberate design position, not a gap.
Tool surface
29 compound tools — one per decision, so an agent never disambiguates between overlapping verbs. read is safe to call freely; write mutates; destructive can delete or archive.
| Area | Tools |
|---|---|
| Daily operating | get_daily_briefing · get_next_actions · inspect_pipeline |
| Search & research | search · fetch · research · import_prospects · find_warm_path |
| People | get_person_360 · manage_person |
| Outreach | get_outreach_review · manage_messages · manage_outreach · manage_relationship_action |
| Engagement & content | get_engagement_review · manage_engagements · get_content_review · manage_content |
| Campaigns & performance | manage_campaign · get_campaign_outcomes · get_performance_metrics |
| Deals | get_deal_360 · manage_deal |
| Revenue | get_revenue · manage_revenue |
| Accounts & knowledge | manage_account · manage_kb |
| Config & skills | manage_settings · skill |
Full schemas, descriptions and MCP safety annotations live in tools.json — generated from the live server definition, never hand-edited.
Configuration
| Env var | Meaning | Default |
|---|---|---|
VRUUM_MCP_TOKEN |
Vruum personal access token | falls back to VRUUM_TOKEN, then ~/.vruum/credentials |
VRUUM_MCP_URL |
Hosted MCP endpoint | https://api.vruum.ai/mcp |
VRUUM_MCP_TIMEOUT_MS |
Per-call timeout — research and imports run long | 300000 |
VRUUM_CONFIG_DIR |
Credentials directory | ~/.vruum |
How it works
your agent ──stdio/JSON-RPC──▶ @vruum/mcp
│
tools/list ──────┤ served locally from tools.json
│ (no network, no credentials)
│
tools/call ──────┴──HTTPS+Bearer──▶ api.vruum.ai/mcp
(authorized server-side)
Listings are a static snapshot bundled at release. That's what makes credential-free introspection possible, and it means a newly added tool won't appear until the next release — calls still execute correctly, since they proxy through. A CI guard regenerates tools.json on every backend change, so the snapshot can be one release old but never silently wrong.
Safety and credentials
- Server-side authorization. The bridge adds no permissions. Your token is exactly your Vruum account, and role/tenant checks happen on the server.
- No automatic retries. A failed
tools/callis never replayed. Many of these tools send outreach or spend money, and an ambiguous failure may mean the server already executed — a silent retry could double-send. The connection is discarded, the error says so, and your agent decides whether re-running is safe. - Your token never leaves your machine except as a
Bearerheader toapi.vruum.ai.
[!WARNING] The bridge picks up ambient credentials. With no
VRUUM_MCP_TOKENset it falls back to~/.vruum/credentials. If you are logged in with the Vruum CLI, then running this server — via the MCP Inspector, a client, or a script — executes against your real account and real data. Write tools will really write.To poke at it with no credentials, pass an explicit env that reaches the process:
env -i PATH="$PATH" HOME=/tmp/empty node dist/index.jsNote that MCP clients following the SDK default only forward an allowlist (
HOME,PATH,SHELL,TERM,USER,LOGNAME) to spawned servers — so settingVRUUM_CONFIG_DIRin your shell may be stripped before it reaches the bridge, whileHOMEsurvives and the credentials file is found anyway. Set credentials in the client's ownenvblock instead.
Development
This repo is a build artifact of the Vruum monorepo, resynced automatically on release. tools.json is generated from the live server definition, so it cannot drift from what the hosted server exposes.
src/index.ts the bridge — token resolution, static listings, proxied calls
tools.json generated tool surface (do not edit by hand)
test/ black-box tests: spawn the built binary, speak raw JSON-RPC
npm install
npm test # builds, then runs the black-box suite
npm run typecheck
Tests drive the built binary over stdin/stdout and assert at the wire level rather than through an SDK client — an SDK-mediated test hides protocol mistakes, since it will happily hand back a result object whether the server returned result or error. They cover the initialize handshake, credential-free listing, protocol-vs-execution error semantics, cursor rejection, capability declaration, and stdout hygiene.
Issues and PRs are welcome here. Maintainers apply accepted changes upstream in the monorepo and they flow back on the next sync — so a merged fix here may appear as part of a sync commit rather than your original one. Changes to tools.json must come from the generator, not by hand.
Links
Vruum · MCP docs · Getting started · CLI reference
Registry entry ai.vruum/mcp · Claude & Codex plugin vruum-gtm/skills
License
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。