01
MCP server (most agents)
Model Context Protocol — Anthropic, OpenAI, Cursor, Codex, Goose all support this natively.
for
Claude Code · Cursor · Codex · Windsurf · Goose · Continue · ChatGPT Desktop
tldr
Add the brain as an MCP server. Agent auto-discovers all skills as resources + tools.
1. Drop this into Claude Code
~/.claude/server.json (or Cursor → Settings → MCP Servers)
{
"mcpServers": {
"company-brain": {
"url": "https://your-brain.com/api/mcp",
"transport": "http"
}
}
}2. Verify the agent can see your skills
Run any agent — it should list 'company-brain' as a resource server.
# Tool surface visible to the agent: brain://skills/refund-decision-policy brain://skills/db-connection-pool-exhausted brain://skills/pricing-exception-approval brain://skills/auth-jwks-rotation-spike ... 9 total skills
3. The agent calls the brain when relevant
No code changes. The agent picks the right skill based on the task automatically.
User: "How do we handle a $312 refund — package never arrived?"
Agent: → resources/list → finds refund-decision-policy
→ resources/read brain://skills/refund-decision-policy
→ walks the runbook
→ returns the decision (with citations)