Customer data MCP requires activation by Avoca. If the server reports that it is not enabled, contact your Avoca representative. Your existing dashboard data permissions apply; a workspace Avo flag is not required by this connection.
Connect your app
-
In an MCP client that supports remote Streamable HTTP servers and OAuth, add this server URL:
- Follow the client’s sign-in prompt. Sign in to Avoca using your usual dashboard method, including Google when available for your account.
- Review the app name, return address, and requested Read Avoca data access. Choose Allow access to connect or Deny to cancel.
- Ask your agent to list your team workspaces, then retrieve data from the workspace you select.

avoca:read. Send one refresh request at a time and save the replacement refresh token before refreshing again. Reusing a refresh token, including simultaneous requests or retries after an uncertain response, revokes the connection and requires reauthorization.
Select your data
Call lists, details, and transcripts require
team_id and the team’s Calls permission. Details and transcripts also require call_id. Enterprise membership alone does not grant permission to read an individual team’s call records.
Metrics take workspace_type (team or enterprise), workspace_id, date_from, and date_to. Team metrics require the team’s Calls permission; enterprise metrics require the enterprise Calls permission and are limited to 50 accessible teams. The start timestamp is inclusive and the end timestamp is exclusive; timestamps are not rounded to calendar days.
The response includes source: "clickhouse", the requested dates, team_count, and a metrics array. Each metric contains metric_id, name, unit, and value. Available metrics are Total Calls, Total Duration (seconds), Leads, Booked Calls, Unbooked Calls, Transferred Calls, Contained Booked Calls, and Contained Leads. They reuse the dashboard’s standard metric definitions and the Custom Analytics visible-call population, including human-handled and unprocessed calls. A Calls page with additional filters can show different totals. Lead, booking, and transfer metrics overlap; do not add them to calculate total calls.
Recent changes can take time to reach ClickHouse. Metrics are unavailable through MCP for workspaces whose call classifications are not yet supported by the ClickHouse analytics compiler. If any accessible team in an enterprise is unsupported, the whole enterprise query fails; it does not return a partial total. Use dashboard analytics or select a supported team in that case.
You can also use the numeric workspace ID from a dashboard URL:
- Team:
https://dashboard.avoca.ai/team/TEAM_ID - Enterprise:
https://dashboard.avoca.ai/enterprise/ENTERPRISE_ID
Keep requests focused
- Call lists and metrics require ISO timestamps with a timezone offset and a date range of at most 31 days. For example,
2026-09-01T00:00:00Zto2026-09-08T00:00:00Z. - Call lists return 20 records by default, up to 100. Filter with
is_booked,is_bookable,is_transferred,call_reasons, orcall_outcomes. - Pass
next_cursorback ascursorto continue a call list, keeping the same team, dates, and filters. Stop whenhas_moreis false. The tools never download every page automatically. - Transcripts return up to 8,000 characters by default, with a maximum of 20,000. Pass
transcript.nextCursorascursorwhiletranscript.hasMoreis true. - Workspace discovery uses
offsetandlimit, returningpageInfo.nextOffsetwhile more results are available. - Prefer metrics for aggregate questions. Fetch individual transcripts only when needed. A failed metrics query is reported as unavailable, not as a zero count.
Disconnect an app
Open Connected apps while signed in to Avoca, then choose Disconnect beside the app. Removing the server from your MCP client alone may leave its authorization active. Disconnecting stops new MCP requests and leaves your dashboard sign-in active. Connections expire after 30 days; reconnect through the sign-in and approval flow.
Troubleshooting
- Sign-in keeps failing: Restart the connection in your MCP client. Use the Avoca account with access to the intended workspace.
- Data access is denied: Verify your team or enterprise membership and the applicable Calls permission. Access to enterprise metrics does not necessarily include individual team records.
- Metrics unavailable: Use dashboard analytics if your workspace is not yet supported. For a timeout or query limit, narrow the date range or select one team. Failed or incomplete queries never return a zero count as a substitute.
- Invalid query: Check the date range, workspace ID, and cursor. Enterprise metrics support at most 50 accessible teams; use individual team metrics for larger enterprises.
- Too many concurrent requests: Reduce parallel reads and retry after the delay indicated by the server.
- The app requires a client secret: This integration supports public OAuth clients with PKCE. Use a client that supports that flow.