MCP server
Jelliu hosts a remote Model Context Protocol server. It exposes your workspace as tools, so an AI assistant can list and create agents, run campaigns, manage contacts, send messages, place calls and read analytics from a conversation.
Every tool is a thin wrapper over the REST API. Tool calls go through the same authentication, scopes, validation, rate limits and audit log as any other API request.
Endpoint
The health check reports the server name, version, transport, supported authentication and the number of tools:
Connect a client
Pick the key’s scope on purpose. A read key is enough for reporting assistants. Managing campaigns and webhooks needs full. See Scopes and tools.
Claude Code
Add the server from the command line:
Or commit a project-level .mcp.json, reading the key from the environment instead of hard-coding it:
Cursor
Add the server to ~/.cursor/mcp.json (global) or .cursor/mcp.json (project):
Claude.ai and other connector-based clients
Add a custom connector with the URL https://mcp.jelliu.co. No key is needed: the client discovers Jelliu’s OAuth server, opens a Jelliu sign-in and consent screen, and receives its own short-lived credentials. See OAuth.
Authentication
API key
Send a workspace API key exactly as for the REST API. Create one under Settings → API Keys in the dashboard; see Authentication.
A missing, malformed, revoked or expired key returns HTTP 401 with a JSON-RPC error and a WWW-Authenticate challenge that points OAuth-capable clients to the discovery document:
OAuth
The MCP server is also an OAuth 2.1 authorization server for public clients.
How the grant works:
- The person approving the connection signs in to Jelliu and approves it on a consent screen. Any member of the workspace can approve.
- The access token is a Jelliu API key that expires after 1 hour. Refresh tokens last 90 days and are single-use: each refresh returns a new one.
- The token never has more access than the person who approved it. Approval by a workspace owner or admin yields
fullscope; approval by anyone else yieldsreadandwrite. - Refreshing stops working if the approving person is no longer a member of the workspace.
Scopes and tools
The key’s scope decides which tools the client can see at all:
“Admin-only operations” are the REST routes restricted to administrators, such as creating, activating or deleting campaigns. A write key sees those tools, but the call fails. For an assistant that manages the whole workspace, use a full key.
Tools that depend on a connected app, such as accounting integrations, are listed only when that integration is connected to the workspace.
Some operations are never exposed over MCP and stay in the dashboard:
- creating or revoking API keys;
- billing purchases (checkout, minute packs, phone numbers);
- contact data erasure.
Tools that place calls or send messages act immediately and incur cost. Configure your assistant to confirm before it uses them.
Limits and errors
- Rate limits. The MCP endpoint accepts 120 requests per minute per client IP. Each tool call is also an API request and counts against your workspace’s rate limits.
- Plan. Access to the MCP server is part of your workspace plan and is included in every current plan. If a plan does not include it, the server answers
403with JSON-RPC error code-32003. - Suspended workspace. Requests return
403with JSON-RPC error code-32002. - Temporary unavailability.
503withRetry-After: 5and JSON-RPC error code-32002.
Error messages from the MCP server may be in Spanish, like other product-facing messages. Rely on the HTTP status and the JSON-RPC code.

