MCP / Claude AI
Connect Callix to Claude AI using the Model Context Protocol (MCP). Once connected, Claude can query your prospects, payments, deal analyses, insights, and more — directly from a conversation.
What is MCP?
MCP (Model Context Protocol) is an open standard that lets AI assistants like Claude call external tools. Callix ships a remote MCP server you can plug into Claude.ai in under a minute — no code or infrastructure required.
Connect to Claude.ai
Generate an API key
Go to Settings → Developer → API Keys in your Callix dashboard and create a new key. Copy it — it's shown only once.
Add a custom connector in Claude.ai
- Open Claude.ai → Settings → Connectors
- Click Add custom connector
- Set Name to
Callix - Set Remote MCP server URL to:
https://fabulous-cobra-808.convex.site/api/v1/mcp/<your-api-key>- Leave all OAuth fields blank
- Click Add
Claude will immediately discover all available tools. A Callix icon will appear in new conversations.
Available tools
get_current_timeReturns the current timestamp — lets Claude calculate accurate date rangeslist_prospectsPaginated list of prospects with optional stage filterget_prospectFull prospect profile by IDcreate_prospectCreate a new prospectupdate_prospectUpdate any prospect fieldslog_eventLog a custom event against a prospectlist_paymentsPayments in a date rangerecord_paymentRecord a manual paymentget_metricsPull account metrics by keylist_callsList call recordslist_deal_analysesPaginated list of analyzed callsget_deal_analysisFull deal analysis by IDget_rep_performanceScorecard results for a specific repget_insightsAI-generated account-level insightsmanage_webhooksList, create, or delete outbound webhooksExample prompts
Use with Claude Desktop or Cursor
For local MCP clients, add the following to your claude_desktop_config.json or Cursor MCP config:
{
"mcpServers": {
"callix": {
"command": "npx",
"args": ["-y", "@callix/mcp"],
"env": {
"CALLIX_API_KEY": "callix_<your-key>"
}
}
}
}Security
- Each MCP session is authenticated via your API key embedded in the URL
- All requests are rate-limited (1,000/minute, 10,000/day per key)
- You can revoke your API key at any time from the Callix dashboard
- All MCP calls are logged under Settings → Developer → API Logs
