Documentation

Get up and running in under 5 minutes.

Quickstart

Switchboard is an MCP gateway that connects your AI tools to 25+ integrations through a single endpoint. There are two ways to use it:

  • Switchboard Hosted — managed service with team features, web dashboard, and zero infra
  • Open Source — run the open-source binary locally for individual use

Installation (Open Source)

Install the open-source Switchboard CLI:

Homebrew
brew install daltoniam/tap/switchboard
Go
go install github.com/daltoniam/switchboard@latest

Then run the setup wizard:

switchboard setup

Hosted Setup

  1. Sign up at switchboard-mcp.com
  2. Create an organization
  3. Add integrations from the dashboard (GitHub, Slack, Datadog, etc.)
  4. Enter credentials or connect via OAuth
  5. Copy your MCP endpoint: https://your-org.switchboard-mcp.com/mcp
  6. Add to your AI client config (see below)

Connect Your AI Client

Cursor

~/.cursor/mcp.json
{ "mcpServers": { "switchboard": { "url": "https://your-org.switchboard-mcp.com/mcp", "headers": { "Authorization": "Bearer sb_your_api_key" } } } }

Claude Desktop

claude_desktop_config.json
{ "mcpServers": { "switchboard": { "url": "https://your-org.switchboard-mcp.com/mcp", "headers": { "Authorization": "Bearer sb_your_api_key" } } } }
Full documentation is available in the GitHub repository.