Quick Start
Give your agent one setup prompt, connect Vruum through plugin, MCP, or CLI, then verify tools and skills.
This guide gets you from zero to a working Vruum agent session. Start by giving your agent the install prompt below. After Vruum is installed, the Vruum MCP tools and skills carry the operating instructions.
Copy this for your agent
Install Vruum for me.
Read https://vruum.ai/llms.txt, then use the simplest setup path this harness
supports. If Vruum has a plugin here, enable it. Otherwise connect the Vruum
MCP server at https://api.vruum.ai/mcp.
If this is a local coding harness, install the CLI, run `vruum login`, then run
`vruum init`.
After setup, verify that Vruum MCP tools and Vruum skills are available.1. Choose the setup path
Use the highest path your harness supports:
| Path | Who should use it | What it does |
|---|---|---|
| Plugin | Most non-technical clients | Installs or connects Vruum as one unit: MCP tools, skills, and instructions where the harness supports them. |
| Direct MCP | Hosted chat clients and MCP-aware harnesses | Connects the agent to https://api.vruum.ai/mcp with your Vruum auth. |
| Local CLI setup | Technical users, CI, local files | Uses Node and the vruum CLI to write MCP config, install skills, debug auth, or process local files. |
Non-technical clients should not need to install Node for day-to-day Vruum operation. Node is required only for the local CLI setup path.
2. Connect MCP
The Vruum MCP server is:
https://api.vruum.ai/mcpIf your harness supports remote MCP, connect that URL and authenticate with your Vruum account or token according to the harness.
After connecting, ask the harness:
List the Vruum MCP tools you can see, then call get_daily_briefing. If the
Vruum MCP server is missing, tell me which setup step is missing.Expected client MCP tools include get_daily_briefing, get_next_actions,
search, fetch, manage_person, manage_deal, manage_messages,
manage_campaign, manage_content, manage_settings, research,
import_prospects, and skill.
3. Load skills
Vruum-shipped skills are packaged workflow instructions: pipeline fill,
outreach triage, engagement triage, deal review, enrichment, winback,
expansion, and content creation. They are separate from team skills saved in
Vruum and managed through the MCP skill tool.
If your harness supports plugins, the plugin should bundle MCP plus skills. If your harness exposes a separate skill directory, install the Vruum skills package there:
npx @vruum/skills install
npx @vruum/skills install --target /path/to/skillsAsk the agent:
List the Vruum-shipped skills available to you, then invoke vruum-guide.See Plugin, MCP, and Skills for the split between packaging, live tools, and workflow instructions.
4. Technical local CLI setup
Use this path when you are technical, operating from a local coding harness, using CI, or need local files such as CSV imports. It requires Node 22 or newer.
Install globally:
npm install -g @vruum/cli
vruum --helpOr run without installing:
npx @vruum/cli --helpCreate a Vruum token in Settings -> API tokens. Tokens start with
vk_live_. Store it locally:
vruum login
vruum whoami --jsonFor stateless CI or local agent scripts, skip the stored credential and use an environment variable:
export VRUUM_TOKEN=<your-vruum-token>
vruum whoami --jsonCodex MCP uses a separate runtime variable:
export VRUUM_MCP_TOKEN=<your-vruum-token>
codexVRUUM_TOKEN overrides the stored local credential for CLI calls.
VRUUM_MCP_TOKEN is the runtime token Codex reads for MCP. Users with access to
multiple companies can scope CLI calls with --for-company <company_id_or_exact_name>; over MCP, use the matching for_company
parameter.
Run setup from the project or workspace where you launch your local agent:
vruum initinit detects supported harnesses and configures what each can safely support.
Today:
- Claude Code: registers MCP and installs Vruum skills.
- Codex CLI: registers MCP and installs Vruum skills.
- Cursor, Cline, OpenCode, Windsurf, Gemini CLI: registers MCP when config is detected; skills/instruction placement depends on the harness.
Use CLI Reference for the full local command tree.
5. Restart and verify
Restart the harness so it reloads MCP and skills.
Technical CLI verification:
vruum whoami --json
vruum skills list --json
vruum deal list --json6. First useful workflows
Start with one of these:
Use vruum-guide. Show my live account state, recommend the single next best
action, and hand off to the right specialist skill.Review the outreach queue and approve only the drafts that pass the quality bar.Fill pipeline for <segment>. Research fit before import and save only qualified
prospects.Review active deals, show stalled ones, and update next steps where the evidence
is clear.What the browser is for
The web app is a read-only window plus configuration. After login, self-serve
accounts land on Today: a glance surface built from your daily briefing
that shows pending outreach counts, new replies, deal alerts, tasks due, and
pipeline by stage. Five activity pages give the same read-only view per area:
/activity/outreach, /activity/deals, /activity/accounts,
/activity/people, and /activity/engagement.
Beyond that, use the web app for the analytics dashboard, Docs, Settings, integrations, OAuth, billing, team access, API tokens, and public proof artifacts. Do not use it as a CRM workbench. People, accounts, deals, queues, campaigns, tasks, team skills, content, and proposals are operated through MCP, skills, or the CLI: the web app observes, your agent acts.
The nudge-copy loop
Every card on Today carries a nudge chip: a ready-made, goal-first prompt for your connected agent. The loop is:
- Open
/todayand scan the counts. - Copy the chip on the card that needs attention.
- Paste it into your connected agent (Claude, Cursor, wherever you connected Vruum).
- The named skill runs. If your harness doesn't have that skill installed, the prompt already tells the agent to fall back to the underlying MCP tool, so it works either way.
One-line troubleshooting: if the agent says Vruum tools are unauthorized, reconnect Vruum in your harness's MCP settings.
Where to next
- MCP — hosted MCP setup and auth model.
- Plugin — plugin availability and fallback setup by harness.
- Skills — shipped skills, team skills, install paths, and workflow pages.
- CLI Reference — every command group and exit code.