Vruum MCP
Vruum MCP is a comprehensive AI revenue automation platform for outbound sales, outreach, deals, pipeline, CRM, LinkedIn marketing, and analytics — all through a unified MCP interface.
People & CRM
Create, search, import, deduplicate, archive, and bulk-manage prospects (manual, CSV, Sales Navigator)
Get 360° person/company profiles combining research, activity, outreach, and deal data
Add timeline notes, log manual interactions (calls/emails with dispositions)
Find emails (Hunter.io), fetch LinkedIn profiles/companies/posts, and auto-fill company profiles
Outreach & Campaigns
Create, clone, update, diagnose, pause/resume, and delete outreach campaigns with multi-step touch sequences and channel fallback chains (email, LinkedIn DM, InMail, connection requests)
Bulk-start or stop outreach plans; review, approve, reject, or edit messages in the outreach queue
Generate follow-ups, reply drafts, and engagement comments; check prose quality before submission
LinkedIn Marketing & Content
Draft, schedule, publish, and delete posts (text, PDF carousels, images, video) with publish-readiness checks
Manage engagement queues (warming comments, nurture reactions, reposts) and review inbound engagers
Access content calendar, post analytics, marketing activity logs, and overview dashboards
Deals & Pipeline
Create and manage deals (person- or company-anchored), move through stages, and configure custom pipelines
Run AI MEDDIC qualification, manage stakeholders with roles, and inspect pipeline health with at-risk alerts
Advance, win, lose, or reopen deals with full 360° deal context
Research & Enrichment
Fetch company websites, LinkedIn profiles/companies/posts, find emails, and batch research lookups
Follow the research playbook, run async background jobs (company auto-fill, imports), and poll job status
Analytics & Insights
Daily briefings with prioritized next actions, outreach performance funnels & timeseries, and reply diagnosis
Campaign improvement briefings, quality/ICP insights, pattern analysis from closed deals, and global k-anonymized benchmarks
SEO/GEO monitoring, prompt performance insights, and seller signal bundles
Revenue & Billing
Read Stripe-backed revenue metrics (MRR, ARR, charge volume) and billing/plan status
Relationship & Warm Paths
Find warm introduction paths to prospects (personal and team-scope) and log relationship actions
Ads
Run LinkedIn ad campaigns (Thought Leader and Page Sponsored), store creatives, manage budgets and approvals, and get attribution reports
Platform & Settings
Manage automation settings, CTA/booking links, channel status, and account lifecycle state
List, invoke, and manage published skills; manage knowledge base documents
Multi-tenant operator support across client companies via
for_companywith server-side membership enforcement
Provides tools for reading Stripe-backed revenue truth, including metrics on gross MRR/ARR, net charge volume, collections, health, ingestion evidence for drilldown, and managing the Stripe revenue connection (connect, reconcile, replay, decide binding, disconnect).
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., "@Vruum MCPfind open deals in my pipeline and draft follow-up emails"
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.
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.
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_…).
{
"mcpServers": {
"vruum": {
"command": "npx",
"args": ["-y", "@vruum/mcp"],
"env": { "VRUUM_MCP_TOKEN": "vk_live_…" }
}
}
}{
"mcpServers": {
"vruum": {
"command": "npx",
"args": ["-y", "@vruum/mcp"],
"env": { "VRUUM_MCP_TOKEN": "vk_live_…" }
}
}
}[mcp_servers.vruum]
command = "npx"
args = ["-y", "@vruum/mcp"]
env = { VRUUM_MCP_TOKEN = "vk_live_…" }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.
Verify it works without configuring anything:
npx -y @modelcontextprotocol/inspector --cli npx -y @vruum/mcp --method tools/listRelated MCP server: GoHighLevel MCP Server
What you can ask for
Once connected, these are ordinary requests to your agent:
You say | What happens |
"What should I work on today?" |
|
"Review my outreach drafts" |
|
"Research Acme Corp and tell me if they fit" |
|
"Find a warm intro to this person" |
|
"Which campaigns are actually working?" |
|
"What's at risk in my pipeline?" |
|
"Draft a LinkedIn post about X" |
|
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 |
|
Search & research |
|
People |
|
Outreach |
|
Engagement & content |
|
Campaigns & performance |
|
Deals |
|
Revenue |
|
Accounts & knowledge |
|
Config & skills |
|
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 personal access token | falls back to |
| Hosted MCP endpoint |
|
| Per-call timeout — research and imports run long |
|
| Credentials directory |
|
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.
The bridge picks up ambient credentials. With no VRUUM_MCP_TOKEN set 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 setting VRUUM_CONFIG_DIR in your shell may be stripped before it reaches the bridge, while HOME survives and the credentials file is found anyway. Set credentials in the client's own env block 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-RPCnpm install
npm test # builds, then runs the black-box suite
npm run typecheckTests 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
Maintenance
Related MCP Servers
- Alicense-qualityBmaintenanceProvides access to over 460 tools within the GoHighLevel CRM, allowing AI assistants to manage contacts, opportunities, messaging, and business workflows through natural language.Last updated1493ISC
- Alicense-qualityBmaintenanceProvides AI models with direct access to over 461 GoHighLevel CRM tools for managing contacts, sales opportunities, and automated messaging through natural language. It enables comprehensive automation of CRM operations including appointment scheduling, payment processing, and lead management.Last updated1493ISC

Summit53 MCP Serverofficial
Alicense-qualityCmaintenanceProvides 48 revenue intelligence tools that let AI assistants search deals, forecast revenue, analyze pipeline risk, manage outreach, and track value delivery via natural language.Last updated31Inno Setup- Flicense-qualityCmaintenanceEnables AI agents to automate sales outreach, research leads, and manage campaigns directly in OutreachPilot via natural language commands.Last updated
Related MCP Connectors
Give AI agents the LinkedIn tools to find, qualify, engage, and follow up with prospects.
Search companies, enrich contacts, and reveal emails and phones from your AI agent.
B2B lead generation, email verification, company enrichment, and agentic GTM Ops.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/vruum-gtm/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server