MCP
Connect Recall’s MCP server to your AI agent to grant read access to the platform.
Overview
Connect Recall.ai to an MCP-compatible AI client so your agent can investigate bots, inspect workspace data, search Recall.ai documentation, and help build or debug your integration.
What You Can Do
Use the Recall.ai MCP server to:
- Investigate why a bot failed to join, record, or produce a transcript.
- Inspect bot lifecycle events, participants, chat messages, and customer-visible logs.
- Trace calendar-created bots and diagnose calendar sync problems.
- Inspect webhook subscriptions, events, and delivery attempts.
- Find recordings, transcripts, and generated media artifacts.
- Check Recall.ai and third-party provider status incidents.
- Search Recall.ai guides and API reference pages
- Review billed usage, credit balances, and configured API rate limits.
- Optionally create or update webhook endpoints, send test webhooks, and submit rate-limit increase requests.
The MCP allows agents to view all the same data that a developer can, without being constrainted to what the API offers.
Quickstart
Find your coding agent below.
Claude Code
claude mcp add --scope user --transport http recall-ai https://us-east-1.recall.ai/mcpYou'll then want to login:
claude mcp login recall-aiCodex
codex mcp add recall-ai --url https://us-east-1.recall.ai/mcpThen complete the Recall.ai OAuth flow when prompted.
Cursor
Add the following to ~/.cursor/mcp.json:
{
"mcpServers": {
"recall-ai": {
"url": "https://us-east-1.recall.ai/mcp"
}
}
}Windsurf
Add the following to ~/.codeium/mcp_config.json:
{
"mcpServers": {
"recall-ai": {
"serverUrl": "https://us-east-1.recall.ai/mcp"
}
}
}Claude Desktop
- Open Settings.
- Open Connectors.
- Add a custom connector.
- Enter
recall-aias the connector name. - Enter
https://us-east-1.recall.ai/mcp. - Connect and complete the Recall.ai OAuth flow.
3. Verify the Connection
Ask your agent:
Use Recall.ai's
get_infotool and tell me the active workspace, organization, and API version. List all the tool calls that the recall-ai MCP supports.
Confirm that the response names the expected workspace before using workspace data or write tools.
Authentication and Workspace Access
Use OAuth when a person is connecting their own AI client. They sign in through the browser, and the connection can access the same Recall.ai billing accounts they can access.
Use a scoped MCP API key for an unattended or shared agent, or when another person should not receive all the access your OAuth connection has. Each key can be limited to one workspace and only the MCP capabilities that person or agent needs.
OAuth
OAuth grants the MCP server access to all billing accounts available to the signed-in user. The workspace selected during authorization becomes the default workspace, but the connection can access the user's other billing accounts and workspaces.
To work with a different workspace:
- Use
list_workspacesto find the desired workspace ID. - Pass that ID as
workspace_idto workspace-scoped tools.
OAuth connections receive read access by default. Write tools require an explicit full or fine-grained write scope.
Scoped MCP API Keys
Create a separate key for each person or agent. This lets you restrict and revoke their access independently.
Create a Key
Create scoped keys from Dashboard → Developers → MCP API Keys in the workspace the agent should access:
- Select New MCP API Key.
- Give the key a descriptive name.
- Choose full read access or specific read permissions.
- Turn off full write access unless the agent needs a write tool.
- If needed, grant only the relevant fine-grained write permission.
- Create the key and copy it immediately to a secure secret store.
An MCP API key:
- Is restricted to the workspace in which it was created.
- Can call only tools allowed by its configured scopes.
- Cannot use the Recall.ai REST API.
- Does not expose tools for scopes it was not granted.
- Has immutable scopes. Revoke and replace the key to change its access.
- Remains active until revoked.
Do not paste an MCP API key into a prompt or commit it to source control.
Authenticate an Agent
Use the MCP endpoint for the region containing the key's workspace:
| Region | MCP URL |
|---|---|
| US East | https://us-east-1.recall.ai/mcp |
| US West | https://us-west-2.recall.ai/mcp |
| Europe | https://eu-central-1.recall.ai/mcp |
| Asia Pacific | https://ap-northeast-1.recall.ai/mcp |
Configure the agent to send the key as a bearer token with every MCP request:
Authorization: Bearer <MCP_API_KEY>Claude Code with an MCP API Key
claude mcp add --scope user --transport http recall-ai https://us-east-1.recall.ai/mcp \
--header "Authorization: Bearer <MCP_API_KEY>"Codex with an MCP API Key
Store the key in an environment variable:
export RECALL_MCP_API_KEY='<MCP_API_KEY>'Add the following to ~/.codex/config.toml:
[mcp_servers.recall-ai]
url = "https://us-east-1.recall.ai/mcp"
bearer_token_env_var = "RECALL_MCP_API_KEY"The MCP API Keys page provides ready-to-copy setup instructions for Cursor, VS Code, Windsurf, Claude Code, Claude Desktop, and Codex.
After connecting, run get_info and confirm that the agent can access only the intended workspace.
Permissions
Read Permissions
mcp.read grants access to every read tool available through MCP. For least-privilege agents, use fine-grained scopes instead:
| Scope | Access |
|---|---|
mcp.account.read | Account, workspace, and billed-usage information |
mcp.bots.read | Bot metadata, status changes, and lifecycle events |
mcp.bot_participants.read | Participant identities and participant events |
mcp.bot_chat.read | Chat messages captured by bots |
mcp.calendars.read | Calendars and synced calendar events |
mcp.calendar_events.raw.read | Raw provider calendar-event payloads |
mcp.docs.read | Recall.ai documentation and API reference search |
mcp.logs.read | Customer-visible bot and workspace logs |
mcp.rate_limits.read | Configured API rate limits |
mcp.recordings.read | Recording metadata and media artifacts |
mcp.status.read | Recall.ai and third-party provider status |
mcp.transcripts.read | Meeting transcripts and speaker timelines |
mcp.webhooks.read | Webhook endpoints and delivery history |
mcp.billing.read | Billing and usage info |
Some tool results contain conditionally protected fields. For example, get_bot requires participant or chat scopes before it returns those fields.
Write Permissions
The server has no write access by default. mcp.write grants every write capability available through MCP. Prefer the fine-grained write scopes for autonomous or shared agents:
| Scope | Tools | External effect |
|---|---|---|
mcp.rate_limits.write | submit_rate_limit_increase_request | Submits a request to Recall.ai support for review |
mcp.webhooks.write | create_webhook_endpoint, update_webhook_endpoint, send_test_webhook_endpoint | Changes dashboard webhook configuration or sends a test event |
Write tools are not shown to credentials that lack the required scope. Your MCP client may also ask for confirmation before running a write tool.
Available Tools
The Recall.ai MCP server exposes read-only tools scoped to the workspace selected during authorization. If your account can access multiple workspaces, use list_workspaces to find the workspace ID and pass it as workspace_id to workspace-scoped tools.
| Tool Name | Description | Use Case |
|---|---|---|
get_info | Return the current Recall.ai user, workspace, organization, and API version. | Confirm the agent is using the expected workspace. |
list_workspaces | List Recall.ai workspaces available to the authenticated account. | Locate the workspace ID for a named organization. |
get_service_status | Return current customer-visible Recall.ai service status. | Confirm whether Recall is reporting a bot outage. |
list_service_incidents | List historical customer-visible Recall.ai status incidents. | Explain failures that overlapped a Recall incident. |
get_third_party_provider_status | Return current public status for meeting and transcription providers. | Confirm whether transcription failures match provider status. |
list_third_party_provider_incidents | List historical public incidents for meeting and transcription providers. | Trace a past meeting failure to provider impact. |
list_rate_limits | List configured public Recall.ai API rate limits for a workspace. | Explain 429s from a high-volume endpoint. |
list_bot_usage | List metered bot usage records for a billing account. | Reconcile which bots drove monthly usage. |
get_billed_usage | Fetch billed usage, commitment consumption, and credit balances. | Confirm invoice-grade usage before billing replies. |
submit_rate_limit_increase_request | Submit a Recall.ai API rate-limit increase request for review. | Request higher limits before a customer launch. |
list_webhook_endpoints | List webhook destinations and subscribed event types. | Confirm transcript.done is subscribed for the destination. |
create_webhook_endpoint | Create a dashboard webhook endpoint. | Add a recording.done destination for a new integration. |
update_webhook_endpoint | Update a dashboard webhook endpoint. | Re-enable transcript.done deliveries for an existing endpoint. |
send_test_webhook_endpoint | Send a test webhook event to a configured endpoint. | Confirm a destination acknowledges test webhook events. |
list_webhook_deliveries | List webhook events and delivery attempts for a resource. | Trace why transcript.done was not delivered. |
list_bots | List Recall.ai bots with filters for status, platform, meeting, and metadata. | Locate bots sharing a lifecycle sub-code. |
get_bot | Fetch detailed metadata, lifecycle events, participants, and chat for a bot. | Explain a bot's waiting-room or recording outcome. |
list_recordings | List recordings with filters for bot, upload, metadata, status, and time. | Locate recordings produced by a specific bot. |
list_audio_mixed | List generated mixed-audio artifacts and their statuses. | Locate finished mixed audio for a recording. |
get_recording_resource | Fetch recording or transcript artifact details by ID. | Confirm transcript status for a supplied artifact ID. |
list_calendars | List calendars in a workspace, with filters for email, platform, and connection status. | Locate disconnected calendars for a user email. |
get_calendar | Fetch details for a single calendar integration. | Confirm a bot's source calendar connection state. |
list_calendar_events | List synced calendar events with filters for calendar, time, and deletion state. | Locate events that should have scheduled bots. |
get_calendar_event | Fetch details for a single synced calendar event. | Explain why one event did not schedule a bot. |
get_bot_calendar_events | Return the calendar events that scheduled a bot. | Trace which calendar event created a bot. |
get_bot_logs | Fetch customer-visible runtime logs for a bot. | Explain why a bot failed to join or record. |
get_workspace_logs | Fetch customer-visible workspace logs within a time window. | Trace API 429s for a specific endpoint. |
list_docs | List Recall.ai documentation and API reference pages. | Find the slug for a product guide. |
search_docs | Search Recall.ai documentation and API reference pages. | Find docs for a specific endpoint or error. |
get_doc | Fetch a Recall.ai documentation page by slug. | Summarize required fields for a known API page. |
Example Workflows
Investigate a Failed Bot
Prompt your agent:
Why did bot
<BOT_ID>fail? Use its status changes and customer-visible logs, explain the causal chain, and link the relevant Recall.ai documentation.
The agent can use get_bot, get_bot_logs, search_docs, and get_doc. If the available evidence does not establish a cause, the response should say what is known and what evidence is still missing.
Trace a Missing Webhook
Prompt your agent:
Why did we not receive
transcript.donefor recording<RECORDING_ID>? Check our subscriptions and delivery attempts.
The agent can use list_webhook_endpoints and list_webhook_deliveries to distinguish a missing subscription from a failed delivery.
Trace a Calendar-Created Bot
Prompt your agent:
Which calendar event scheduled bot
<BOT_ID>, and what was the calendar's connection state?
The agent can use get_bot_calendar_events and get_calendar.
Configure a Webhook
With mcp.webhooks.write, prompt your agent:
Create a webhook endpoint for
recording.doneat<WEBHOOK_URL>. Show me the proposed change and ask for confirmation before creating it.
The agent can use create_webhook_endpoint after you confirm the destination and event subscription.
Search Recall.ai Documentation
Prompt your agent:
Find the current Recall.ai documentation for creating a meeting bot and summarize the required request fields for this workspace's API version.
The agent can use search_docs followed by get_doc.
Updated 3 days ago
