Docs · MCP
Connect an agent to your brain
Cerebro speaks MCP, so any MCP-compatible agent — Claude Code, Cursor, Windsurf, or your own — can read and write your company brain. Two minutes, one endpoint, one key.
https://cerebro.frozo.ai/mcpYour dashboard always shows the current endpoint at Admin → MCP.
Get an API key
Sign in as an admin or owner, open Admin → MCP, and Generate key. Name it after the agent (e.g. “Ada's Claude Code”) and copy it immediately — it's shown once.
Key format: vc_<base64url>
Wire it into Claude Code
One command adds Cerebro as an HTTP MCP server:
claude mcp add --transport http cerebro \
https://cerebro.frozo.ai/mcp \
--header "Authorization: Bearer vc_your_key_here"Restart Claude Code. Ask it to “search the company brain” — it now has memory_search, memory_write, memory_context, memory_supersede, and more.
Wire it into Cursor / Windsurf / any MCP host
Add an HTTP MCP server in the host's config:
{
"mcpServers": {
"cerebro": {
"url": "https://cerebro.frozo.ai/mcp",
"headers": { "Authorization": "Bearer vc_your_key_here" }
}
}
}Reload the window. The brain shows up as a tool source the agent can call.
Prove it recalls
Ask the agent to write a decision (“remember that we chose Postgres over Pinecone”), then in a fresh session ask “what did we decide about vector search?” — it recalls it, dated and sourced. That's the whole product: an agent that remembers what your team already knows.
The MIT engine runs on your machine, storing memories as plain markdown.