Documentation Index
Fetch the complete documentation index at: https://docs.getmcp.com/llms.txt
Use this file to discover all available pages before exploring further.
Returns aggregate stats for the current day, including total calls, success rate, average response time, and server/tool counts.
Query Parameters
Number of days to look back. Supported values: 7, 30, 90. Defaults to 1 (today). Use with to for custom ranges.
Start date for a custom range. Format: YYYY-MM-DD. Overrides days if provided.
End date for a custom range. Format: YYYY-MM-DD.
curl --request GET \
--url https://yoursite.com/wp-json/getmcp/v1/analytics/overview \
--header 'Authorization: Bearer gmcp_your_api_key'
{
"total_servers": 4,
"active_servers": 3,
"total_tools": 22,
"active_tools": 19,
"calls_today": 847,
"calls_yesterday": 932,
"avg_response_ms": 384,
"success_rate": 97.52
}
Response Fields
Total number of servers configured.
Number of servers with active status.
Total number of tools across all servers.
Number of tools with active status.
Total MCP tool calls made today.
Total MCP tool calls made yesterday.
Average tool execution time in milliseconds for today.
Percentage of successful calls today (0–100).