Skip to content

Latest commit

 

History

History
111 lines (87 loc) · 2.27 KB

File metadata and controls

111 lines (87 loc) · 2.27 KB

MCP Server Examples

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.

Pinecone (Vector Search)

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 (Database)

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"
  }
}

Google Analytics (Analytics)

Traffic, conversion, user behavior data. Routes to: Research, SEO, Funnel agents.

"analytics": {
  "command": "npx",
  "args": ["-y", "analytics-mcp-package"],
  "env": {
    "ANALYTICS_KEY": "YOUR_KEY"
  }
}

CMS (WordPress, Contentful, Strapi)

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"
  }
}

Email / CRM (Mailchimp, HubSpot, ActiveCampaign)

Send emails, manage contacts. Routes to: Email, Outreach agents.

"email-crm": {
  "command": "npx",
  "args": ["-y", "email-crm-mcp-package"],
  "env": {
    "API_KEY": "YOUR_KEY"
  }
}

Social Media (Buffer, X API, LinkedIn API)

Post content, monitor engagement. Routes to: Social, Community agents.

"social": {
  "command": "npx",
  "args": ["-y", "social-mcp-package"],
  "env": {
    "API_KEY": "YOUR_KEY"
  }
}

Custom API

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"
  }
}

How to Add

  1. Copy the JSON block for the server you want
  2. Paste it inside "mcpServers": { ... } in .mcp.json
  3. Replace placeholder values with real credentials
  4. Add the server name to enabledMcpjsonServers in .claude/settings.local.json
  5. Restart Claude Code