Skip to main content

SignalPilot Cloud

SignalPilot Cloud is a hosted version of the gateway — no Docker, no self-managed infrastructure.

Get started

  1. Sign up at app.signalpilot.ai — free tier available.
  2. Create an API key in Settings → API Keys.
  3. Add connections in the Connections UI (Snowflake, BigQuery, PostgreSQL, etc.).
  4. Point Claude Code at the cloud gateway.

Connect Claude Code to the cloud

connect claude code to the cloud
$ claude mcp add --transport http signalpilot https://gateway.signalpilot.ai/mcp \
--header "Authorization: Bearer YOUR_API_KEY"

Replace YOUR_API_KEY with the key from step 2.

MCP config for other clients

mcp config for other clients
{
"mcpServers": {
"signalpilot": {
"type": "http",
"url": "https://gateway.signalpilot.ai/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}

What cloud adds over self-host

FeatureSelf-hostCloud
SSO (Clerk)NoYes
Multi-tenant isolationManualAutomatic
Managed history & dashboardsNoYes
Encrypted credential storageLocal SQLiteManaged
SLA / enterprise supportCommunityAvailable

Plugin with cloud

The Claude Code plugin works with the cloud gateway without modification — the skills are local to Claude Code and the MCP tools call the cloud endpoint using your API key.

install the plugin
$ claude plugin marketplace add SignalPilot-Labs/signalpilot-plugin
$ claude plugin install signalpilot-dbt@signalpilot