Connect your agent
Create an API key, then point your MCP client at the Sailbit server.
1. Get an API key
- Open Sailbit → Settings → Agent access (requires a Pro plan).
- Create a key and copy the token (sb_live_…). You'll only see it once.
2. Connect the server
Use the streamable HTTP endpoint at /api/mcp with your key as a bearer token.
Claude Code
claude mcp add --transport http sailbit https://sailbit.app/api/mcp \
--header "Authorization: Bearer sb_live_xxx"Claude Desktop / Cursor (mcp.json)
{
"mcpServers": {
"sailbit": {
"url": "https://sailbit.app/api/mcp",
"headers": { "Authorization": "Bearer sb_live_xxx" }
}
}
}Replace sailbit.app with your Sailbit URL and sb_live_xxx with your key.