Installation

Connect Claude Code, Cursor, or another Streamable HTTP MCP client to the hosted Saber MCP server and authorize with your API key.

The Saber MCP Server is hosted at https://mcp.saber.app/mcp. No installation or self-hosting is required — just point your client at that URL and authorize with your Saber account.

Claude Code

The fastest way to connect. Run this command once:

claude mcp add --transport http saber https://mcp.saber.app/mcp

On first use, Claude Code will open the OAuth flow in your browser. Enter your Saber API key when prompted. After that, the connection is stored and reused automatically.

To verify it was added:

claude mcp list

To remove it:

claude mcp remove saber

Claude Desktop

Add the following to your Claude Desktop config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "saber": {
      "type": "streamable-http",
      "url": "https://mcp.saber.app/mcp"
    }
  }
}

Restart Claude Desktop after saving the file. On first use, you'll be redirected to authorize with your Saber account.

Cursor

Open Cursor's MCP settings and add a new server:

{
  "mcpServers": {
    "saber": {
      "type": "streamable-http",
      "url": "https://mcp.saber.app/mcp"
    }
  }
}

Other clients

Any MCP client that supports Streamable HTTP transport can connect. Point it at:

https://mcp.saber.app/mcp

OAuth metadata is served at https://mcp.saber.app/.well-known/oauth-authorization-server and is discovered automatically by compliant clients.

Getting a Saber API key

During the OAuth flow, you'll be asked to enter a Saber API key. To get one:

  1. Log in to ai.saber.app
  2. Navigate to SettingsAPI Keys
  3. Click Create API Key, give it a name, and copy it immediately — it's only shown once

On this page