Getting Started

Connecting

Zeeb MCP works with any client that supports the Model Context Protocol. Below are setup instructions for the most common clients.

MCP server details

PropertyValue
URLhttps://mcp.zeeb.cloud/mcp
TransportStreamable HTTP (HTTP/SSE)
AuthAuthorization: Bearer zb_your_key

Claude Desktop

Claude Desktop supports MCP natively since version 0.10.

Setup

  1. Open the config file:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
    • Linux: ~/.config/Claude/claude_desktop_config.json
  2. Add the Zeeb server:

{
  "mcpServers": {
    "zeeb": {
      "url": "https://mcp.zeeb.cloud/mcp",
      "headers": {
        "Authorization": "Bearer zb_your_key_here"
      }
    }
  }
}
  1. Restart Claude Desktop.

  2. Open a new conversation — you should see Zeeb tools available in the tool picker (hammer icon).


Cursor

Cursor supports MCP servers through its settings panel.

Setup

  1. Open Cursor → Settings → Cursor Settings
  2. Navigate to the MCP tab
  3. Click Add new MCP server and enter:
    • Name: zeeb
    • URL: https://mcp.zeeb.cloud/mcp
  4. Add the authorization header:
{
  "zeeb": {
    "url": "https://mcp.zeeb.cloud/mcp",
    "headers": {
      "Authorization": "Bearer zb_your_key_here"
    }
  }
}
  1. Save and reload. Zeeb tools will be available in the Cursor Agent.

Lovable

Lovable supports MCP servers through OAuth. Direct bearer token auth is not supported in Lovable.

Setup

  1. In Lovable, open Settings → Integrations → MCP Servers
  2. Add a new server with URL: https://mcp.zeeb.cloud/mcp
  3. Lovable will detect the OAuth endpoint automatically and prompt you to authorize
  4. You'll be redirected to Zeeb's authorization page — enter your Zeeb API key
  5. Once authorized, Lovable can use all Zeeb tools in your projects

Any MCP-compatible client

For any other client that supports the MCP specification:

  • Server URL: https://mcp.zeeb.cloud/mcp
  • Transport: Streamable HTTP (POST to /mcp)
  • Auth header: Authorization: Bearer zb_your_key_here
  • OAuth discovery: https://mcp.zeeb.cloud/.well-known/oauth-authorization-server

Verify the connection

Once connected, call list_available_tools to see all available Zeeb tools and verify the connection is working.


Troubleshooting

ErrorCauseFix
401 Invalid API keyWrong or expired keyRegenerate key in the portal
429 Rate limit exceededToo many requestsSlow down or upgrade your plan
Session not foundMCP session expiredReconnect the MCP client
Tools not appearingClient not reloadedRestart the client after config change