The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Callrail MCP listing page.
A Model Context Protocol server that exposes the CallRail REST API v3 to any MCP-compatible client (Claude Code, Claude Desktop, Cursor, and others).
Created by Steve Japalucci, founder of Pittsburgh Digital Marketing Agency (PGHDMA).
Works with both major versions of the MCP Python SDK (1.x and 2.x).
Once installed, any MCP-aware assistant can answer things like:
Reporting
Agency cost attribution
Conversion debugging
Lead management
Tag and tracker management
confirm_billing=True, costs about $3/mo)To install from source (latest unreleased):
Get an API key at Settings > API Keys in your CallRail account. You need Account Admin permission to create one.
Provide it one of two ways:
Or override with CALLRAIL_API_KEY_FILE=/path/to/key.txt.
~/.claude.json or claude_desktop_config.json)If you installed via pipx, callrail-mcp will be on your PATH automatically. Otherwise, point command at the full path to the executable.
The server speaks standard MCP stdio. Any client that supports stdio MCP servers will work; just run callrail-mcp as the command.
57 tools total, covering roughly 95% of CallRail's REST API v3 surface: read tools, write tools, tracker provisioning, agency aggregation, account management, notifications, integrations discovery, outbound calls, offline-lead backfill, leads and cross-channel timelines, SMS-thread lead management, and server-side analytics.
| Tool | Purpose |
|---|---|
list_accounts | List accessible CallRail accounts |
list_companies | List companies (clients) under an account. Optional status="active" filter and page |
list_trackers | List tracking phone numbers and their source mapping. Optional status="active" filter |
get_tracker | Full detail for one tracker |
list_calls | Paginated call list. Filter by company, date, and answer_status |
get_call | Full detail for a specific call |
call_summary | Aggregate stats (total, answered, by source, duration) for a window |
list_form_submissions | CallRail Form Tracking submissions |
list_text_messages | SMS conversations |
list_users | Account users |
get_call_recording | Recording URL (if recording enabled) |
get_call_transcript | Conversation Intelligence transcript (requires Premium CI since 2026-05-21) |
search_calls_by_number | Find calls by phone number across a window |
list_tags | List tags in an account or filtered to one company |
| Tool | Purpose |
|---|---|
update_call | Update note, tags, spam flag, customer name, lead status |
add_call_tags / remove_call_tags | Additive and subtractive tag changes (preserves existing) |
update_form_submission | Same field surface as update_call, plus value (numeric, supported on form submissions but not on calls, where CallRail returns 500) |
create_tag / update_tag / delete_tag | Full CRUD on the per-company tag taxonomy |
| Tool | Purpose |
|---|---|
create_tracker | Provision a new tracking number. Requires confirm_billing=True as a safety guard against accidental provisioning. Supports source trackers and session (DNI) pools of 4 to 50 numbers |
update_tracker | Update mutable settings: name, destination, whisper, greeting, SMS |
delete_tracker | Soft-delete a tracker (releases the phone number, preserves history) |
| Tool | Purpose |
|---|---|
get_company / create_company / update_company / delete_company | Full company (client) CRUD. Free, since CallRail bills per number rather than per company. Soft-delete semantics |
get_user / create_user / update_user / delete_user | Full user CRUD. create_user invites by email; roles: admin, manager, reporting |
get_tag | Single tag detail |
get_form_submission | Single form-submission detail |
get_text_message | Single SMS conversation with all messages |
create_form_submission | Manually create a form submission (backfill walk-in, paper-form, or offline leads) |
| Tool | Purpose |
|---|---|
list_notifications / create_notification / update_notification / delete_notification | Full per-user alert-rule CRUD (who gets pinged on which call, text, or form event) |
list_integrations(company_id) / get_integration | Discover GMB, Google Ads, Facebook, Slack, and Webhook integrations attached to a company. CallRail models webhooks as an integration type, so this is also how you inspect webhooks |
| Tool | Purpose |
|---|---|
create_outbound_call | Place an outbound call. CallRail dials business_phone_number first, then bridges to customer_phone_number, showing caller_id. Requires confirm_dialing=True as a safety guard, since it dials real phones, costs minutes, and carries legal implications. US and Canada only |
| Tool | Purpose |
|---|---|
list_leads / get_lead_timeline | CallRail's deduplicated person records, plus full cross-channel history (calls, forms, texts) per lead with first and last touch attribution |
list_sms_threads / get_sms_thread / update_sms_thread | SMS-thread lead management: tag, note, and qualify texting leads the way you would calls |
call_stats | Server-side call aggregation via /calls/summary.json. Group by company, company_id, source, keywords, campaign, referrer, landing_page, or last_requested_page in one request instead of paginating every call |
call_timeseries | Call-volume trend line. Supports interval (hour, day, week, month, year) and guards CallRail's 200-data-point limit before sending |
form_stats | Server-side form-submission totals |
get_call_page_views | The visitor's page-view journey behind a call. Pairs with call_eligibility_check for conversion debugging |
| Tool | Purpose |
|---|---|
usage_summary | Per-company cost-attribution breakdown for the cycle: minutes used, active numbers, estimated cost share, sorted by biggest cost driver. Answers "which client is burning my CallRail budget" |
call_eligibility_check | Audit whether a specific call qualifies as a Google Ads conversion. Checks gclid presence, answered status, duration against Google's threshold (default 60s), and source |
compare_periods | Compare the current N-day window against the previous one. Per-company minute and call deltas plus biggest mover |
bulk_update_calls | Apply one update (tag, note, lead_status, spam) to every call matching a filter. dry_run=True by default and capped at 500 calls |
spam_detector | Heuristically flag likely-spam calls (short duration, unanswered, repeat-caller patterns). Optional auto_tag=True adds an auto_detected_spam tag. Deliberately does not set spam=True, which would hide the call from default GETs |
All tools accept account_id optionally; if omitted, the first accessible account is auto-resolved. Most accept company_id to filter to a single client.
CallRail's GET /calls.json accepts answer_status (answered, missed, voicemail) but has no answered or source parameter. Earlier versions of this server forwarded both and CallRail silently ignored them, so results looked filtered but were not. Since v1.2.0:
answer_status is the documented filter and is applied server-side.answered remains as a deprecated alias that translates to answer_status.source is applied client-side, and the response includes a source_filter block stating exactly what was matched. For source breakdowns, prefer call_stats(group_by="source").Validation is strict throughout: phone-number format, area code (^\d{3}$), session pool size (CallRail's 4 to 50 range), name, whisper, and greeting length caps, and a 12-value source-type enum.
The CallRail API returns a lean default payload. Ask for more fields on list_calls, get_call, or list_form_submissions via the fields parameter:
See the CallRail API docs for the full field catalog per resource.
CallRail offers an official hosted MCP server (documented at apidocs.callrail.com) using OAuth 2.0, with roughly 30 tools and a server URL provided by your CallRail account team. It is a good option if you want a fully managed remote server.
This project is different on purpose:
| callrail-mcp (this project) | Official CallRail MCP | |
|---|---|---|
| Install | pip install callrail-mcp, running in two minutes | URL provisioned by your CallRail account team |
| Hosting | Local stdio, so your API key never leaves your machine | Hosted remote (OAuth) |
| Tools | 57 | ~30 |
| Agency tooling | usage_summary cost attribution, compare_periods, spam_detector, bulk_update_calls, call_eligibility_check | Not offered |
| Safety guards | confirm_billing, confirm_dialing, dry_run defaults, strict input validation | Not documented |
| Source | MIT, open, auditable | Closed |
Both speak the same underlying REST API v3. If you run an agency across multiple client accounts and want cost attribution and bulk workflows, this project is built for exactly that.
The following CallRail capabilities are not in this MCP, by design. PRs are welcome if you have an account that supports them, or open an issue and we will prioritize.
These endpoints exist but require account upgrades or additional permissions that a standard CallRail account does not have. Re-probed live 2026-09-07:
POST /text-messages.json) needs A2P/TCR SMS registration. CallRail enforces TCPA-compliance keywords (STOP, CANCEL, UNSUBSCRIBE) on outbound text messages. MMS support was added by CallRail on 2026-05-05.POST /integrations.json with type=Webhook) needs Integration-Admin permission./caller_ids.json CRUD) is documented by CallRail but returns 403 on a standard account./message-flows.json CRUD, SMS auto-reply flows) is documented but returns 403./integration_triggers.json CRUD) is documented but returns 403.These have no API equivalent and are managed exclusively via the CallRail web UI:
Readable on a standard account, judged low value so far: summary_emails CRUD, companies/bulk_update.json (external form capture only), and form_submissions/ignored_fields.json.
The CallRailClient is also usable as a library:
paginate() accepts an optional stats dict that reports pages_fetched, items_yielded, total_records, and truncated, so you can tell a capped result from a complete one.
For debugging, or to verify your key works:
The server speaks MCP stdio. It will wait for JSON-RPC messages on stdin. Press Ctrl-C to exit.
To smoke-test the API key without running the MCP loop:
CallRail allows 60 requests per minute per API key. The client retries 429 responses using the Retry-After header, and retries 5xx responses with exponential backoff for idempotent methods only (GET, PUT, DELETE, HEAD, OPTIONS). POST is never retried on 5xx, so a lost response cannot create duplicate trackers. For heavy pagination, prefer the built-in paginate() helper.
See DEVELOPMENT.md for release flow, API quirks worth knowing, and the conventions this codebase follows.
Contributions welcome. See CONTRIBUTING.md for dev setup, test conventions, and release flow. Please file issues via GitHub Issues and follow the Code of Conduct.
If you discover a security vulnerability, please report it privately per SECURITY.md instead of opening a public issue.
Steve Japalucci, founder of Pittsburgh Digital Marketing Agency. Reach out at s@pghdma.com.
MIT. See LICENSE. Copyright (c) 2026 Steve Japalucci / Pittsburgh Digital Marketing Agency.
This project is an independent open-source integration and is not affiliated with, endorsed by, or officially supported by CallRail. "CallRail" is a trademark of CallRail, Inc. All product names, logos, and brands are property of their respective owners.