Skip to main content
Supersonic runs a standard MCP server. Clients that support MCP (Claude Desktop, Cursor, Windsurf, Cline) can connect and discover all 62 tools automatically.
If you’re using an AI coding agent like Claude Code or Codex, the CLI uses 10–30x fewer tokens per operation since it doesn’t load tool schemas into context.

Configuration

Add this to your MCP client config:
{
  "mcpServers": {
    "supersonic": {
      "url": "https://mcp.supersonic.cv/",
      "headers": {
        "Authorization": "Bearer supersonic_live_YOUR_KEY"
      }
    }
  }
}
Get your API key from the Supersonic dashboard.

What happens when you connect

  1. Your client sends tools/list and receives 62 tools, each with a full JSON input schema
  2. When the agent calls a tool, your client sends tools/call with the tool name and parameters
  3. The server executes the tool, checks permissions, logs the call, and returns the result

Permissions

The API key inherits its creator’s role:
RoleAccess
OwnerAll tools
AdminMost tools
MemberStandard CRUD
Tools that require a higher role will return a permission_denied error.