One endpoint, grounds every agent
Point your agent framework at the VerveContext MCP server and every enabled source becomes a tool the model can call to check itself — no per-source plumbing. One endpoint, one scoped key, 300+ live sources your agents can cite.
- MCP-native
- Scoped keys
- Audit logs
One MCP server, every source
Native protocol, scoped keys, audit logs, and one key across all 300+ sources.
Model Context Protocol
VerveContext is a native MCP server, so it works with any MCP client — Claude, Cursor, LangChain, or your own. Every enabled source appears as a callable tool with a model-readable name and when-to-use hints; there's no per-source plumbing to write.
- Native MCP
- Any client
Scoped keys
Grant an agent only the sources it should reach. A key scoped to markets and weather can't quietly call anything else — so a single connection stays least-privilege across every agent you run.
- Least privilege
- Per agent
Usage & audit logs
Every grounding call is recorded — which source, which key, when. See exactly what was pulled to ground each answer, so you can trace a claim back to the moment its data was fetched.
- Per-source usage
- Traceable
One key across every source
300+ sources ride the same endpoint and the same key. Enable markets today and add news next week without touching the connection — the tool list grows, the setup doesn't change.
- 300+ sources
- One endpoint
Three lines of config to grounded answers
Add the endpoint and your key to your MCP client's config — a context.json / mcpServers block naming the server url and an x-api-key header. No SDK, no per-source wiring.
- 01
Point your agent at the endpoint
Add VerveContext to your MCP client's server config — the url is https://api.vervecontext.com/v1/mcp. In most clients this is a small JSON entry (a context.json / mcpServers block) naming the server and its url.
- 02
Add your scoped key
Attach your key as the x-api-key header on that server entry. Keys look like vc_live_… and carry exactly the sources you scoped them to — nothing more.
- 03
Every enabled source is a callable tool
Restart the client and the sources you turned on show up as tools. The agent calls them when an answer needs a real value, and each fact comes back with the source it can cite.
Pick your agent
Same endpoint, different setup mechanics. Follow the guide for the framework you run.
Claude
Claude natively speaks MCP. Add VerveContext as a server in Claude Desktop and its answers start citing live sources.
- Claude Desktop
- mcpServers
Cursor
Wire sources in as MCP tools inside the editor, so agentic coding workflows can check real data while you build.
- .cursor/mcp.json
- In-editor
LangChain
Load VerveContext's MCP tools into a chain or agent and let the pipeline ground its steps in live facts.
- Chains & agents
- Tools