Add any of these to mcpServers in .mcp.json and replace placeholder values with your real credentials. Then add the server name to enabledMcpjsonServers in .claude/settings.local.json.
Semantic search over knowledge base. Routes to: Content, SEO, Research agents.
"pinecone": {
"command": "npx",
"args": ["-y", "@pinecone-database/mcp"],
"env": {
"PINECONE_API_KEY": "YOUR_API_KEY"
}
}Supabase PostgreSQL — customer data, product info, analytics. Routes to: Research, Strategy, Funnel agents.
"supabase": {
"command": "npx",
"args": ["-y", "supabase-mcp"],
"env": {
"SUPABASE_URL": "YOUR_SUPABASE_URL",
"SUPABASE_ANON_KEY": "YOUR_ANON_KEY"
}
}Traffic, conversion, user behavior data. Routes to: Research, SEO, Funnel agents.
"analytics": {
"command": "npx",
"args": ["-y", "analytics-mcp-package"],
"env": {
"ANALYTICS_KEY": "YOUR_KEY"
}
}Publish content, manage pages. Routes to: Content, Copy, Social agents.
"cms": {
"command": "npx",
"args": ["-y", "cms-mcp-package"],
"env": {
"CMS_URL": "YOUR_CMS_URL",
"CMS_TOKEN": "YOUR_TOKEN"
}
}Send emails, manage contacts. Routes to: Email, Outreach agents.
"email-crm": {
"command": "npx",
"args": ["-y", "email-crm-mcp-package"],
"env": {
"API_KEY": "YOUR_KEY"
}
}Post content, monitor engagement. Routes to: Social, Community agents.
"social": {
"command": "npx",
"args": ["-y", "social-mcp-package"],
"env": {
"API_KEY": "YOUR_KEY"
}
}Any custom MCP server — the orchestrator auto-discovers tools and routes to relevant agents.
"custom": {
"command": "npx",
"args": ["-y", "your-custom-mcp"],
"env": {
"API_KEY": "YOUR_KEY"
}
}- Copy the JSON block for the server you want
- Paste it inside
"mcpServers": { ... }in.mcp.json - Replace placeholder values with real credentials
- Add the server name to
enabledMcpjsonServersin.claude/settings.local.json - Restart Claude Code