Skip to main content
Glama

Get overview metrics

get_overview
Read-onlyIdempotent

Headline metrics for one MCP over a date range: calls, first-call success, p95 latency, cost per session, sessions, outcome breakdown and response size.

Ask for only what was wanted. metrics: ["calls"] returns calls and nothing else — prefer that over pulling the whole overview and reading one field out of it. Omitting metrics returns the summary figures; the larger series (daily, tools, clients, follows, sparklines) are returned only when named.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toNoEnd date, inclusive, YYYY-MM-DD (UTC).
mcpYesThe MCP, by name or id. Names are matched case-insensitively; call list_mcps if unsure.
fromNoStart date, YYYY-MM-DD (UTC).
toolsNoNarrow to these tool names. Sessions and cost-per-session come back null when set — a session belongs to the server, not to a tool.
clientsNoNarrow to these client names, as the calling model reports itself — `claude-desktop`, `cursor`. Unlike `tools` this narrows everything, sessions included. Combine the two to ask how one tool reads to one model, which is where the answer usually is: the same description works for one model and not another, and a server-wide average hides it.
metricsNoWhich metrics to return. Omit for the summary figures.
last_daysNoWindow ending today, in days — 7 for the last week, 30 for the last month. Ignored when from/to are given.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
costNoApproximated as bytes / 4 tokens at $3 per million.
callsNo
rangeYesThe window these figures cover, echoed back.
toolsNoReturned only when `tools` is named.
seriesNoReturned only when `daily` is named.
clientsNoReturned only when `clients` is named.
filtersYesWhat was applied, echoed back.
followsNoWhich tool gets called after which. Returned only when `follows` is named.
latencyNo
outcomesNoThe four failures kept apart, because one pooled rate says open the tool and nothing about what to change inside it.
sessionsNoNull under a tool filter, for the same reason cost per session is.
sparklinesNoReturned only when `sparklines` is named.
nightly_as_ofYesThe last day the nightly pass has walked. Retries, first-call success and tool pairs only exist up to here; null means it has not run over this window at all.
response_sizeNo
first_call_successNoThe headline metric. Within one session, the same tool called twice inside 30 seconds with *different* arguments is a retry — the model reworded and tried again. Identical arguments are not: that is pagination or polling.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With readOnlyHint and idempotentHint annotations already covering safety, the description adds useful behavioral details: omitting metrics returns summary figures, and larger series like daily, tools, clients, follows, and sparklines are only returned when explicitly named. It also communicates the cost-conscious behavior of returning exactly what is requested.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact, front-loads the core purpose, and every sentence earns its place. The first sentence establishes what the tool returns; the second gives actionable usage guidance without redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema and full parameter coverage, the description is largely complete for correct invocation: it explains the default return behavior, how to request specific metrics, and what larger series are available. It does not add explicit sibling differentiation or mention edge behavior beyond parameters, but nothing critical is missing for an agent to call it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already documents all parameters thoroughly, so the baseline is 3. The description goes beyond the schema by explaining the selective-return behavior, giving a concrete example (metrics: ["calls"]), and warning against pulling the full overview unnecessarily. This adds meaningful guidance for using the metrics parameter correctly.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool as returning headline metrics for one MCP over a date range and enumerates the specific metrics included. It does not explicitly name or compare against sibling tools like get_usage or get_insights, so it misses the strongest form of differentiation, but the scope and metric list make the purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use it (when you need headline metrics for a single MCP over a date range) and provides concrete guidance on requesting only needed metrics. However, it does not explicitly explain when to choose this tool over its get_* siblings or state any exclusions, leaving some selection guidance to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources