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
| Property | Value |
|---|---|
| URL | https://mcp.zeeb.cloud/mcp |
| Transport | Streamable HTTP (HTTP/SSE) |
| Auth | Authorization: Bearer zb_your_key |
Claude Desktop
Claude Desktop supports MCP natively since version 0.10.
Setup
-
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
- macOS:
-
Add the Zeeb server:
{
"mcpServers": {
"zeeb": {
"url": "https://mcp.zeeb.cloud/mcp",
"headers": {
"Authorization": "Bearer zb_your_key_here"
}
}
}
}
-
Restart Claude Desktop.
-
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
- Open Cursor → Settings → Cursor Settings
- Navigate to the MCP tab
- Click Add new MCP server and enter:
- Name:
zeeb - URL:
https://mcp.zeeb.cloud/mcp
- Name:
- Add the authorization header:
{
"zeeb": {
"url": "https://mcp.zeeb.cloud/mcp",
"headers": {
"Authorization": "Bearer zb_your_key_here"
}
}
}
- 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
- In Lovable, open Settings → Integrations → MCP Servers
- Add a new server with URL:
https://mcp.zeeb.cloud/mcp - Lovable will detect the OAuth endpoint automatically and prompt you to authorize
- You'll be redirected to Zeeb's authorization page — enter your Zeeb API key
- 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
| Error | Cause | Fix |
|---|---|---|
401 Invalid API key | Wrong or expired key | Regenerate key in the portal |
429 Rate limit exceeded | Too many requests | Slow down or upgrade your plan |
Session not found | MCP session expired | Reconnect the MCP client |
| Tools not appearing | Client not reloaded | Restart the client after config change |