← All posts

Connect to Vocion over MCP: your agents' tools, from any client

v2.16.0 serves the agent domain-tool registry over MCP — typed CRM reads, cache-aware Zoom transcripts and Gmail threads, knowledge search, and review-gated writes — plus a CLI for issuing Bearer tokens.

Vocion Teamvocion-v2.16.0

Until now, Vocion's MCP server and Vocion's agents held two different toolboxes. The MCP surface was the authoring and admin plane — write a skill, start a mission, approve a draft — while the tools agents actually work with (knowledge search, the typed CRM reads, the connector pulls) lived only inside the agent runtime. If you wanted the data, you asked an agent. v2.16.0 merges the two: the domain tool registry is now served over MCP, so any MCP client — Claude Code, Claude Desktop, Cursor, Zed — can call the same tools your agents run on, under the same gates.

What's new

Connecting

Hosted or self-hosted, the HTTP transport is one endpoint, multi-tenant, org-scoped by token:

npm run tokens:issue -- --org revenue --name "my laptop"
POST https://your-install/api/mcp
Authorization: Bearer vcn_live_...

Point any remote-capable MCP client at that URL with the header. For a local, single-tenant setup, the stdio transport still works: claude mcp add vocion -- npm --prefix /path/to/checkout run mcp:serve with VOCION_ORG_ID set.

Where to find it

The full tool reference, cache semantics, and extension guide live in the MCP reference. If you work in Claude Code, the companion post — Driving Vocion from Claude Code — walks the day-to-day patterns.

Get it

Pull v2.16.0, run migrations, and issue a token. Everything above ships in core — no new services, no config beyond the optional VOCION_MCP_AGENT_SLUG.