Skip to main content
Glama

get_report

Get the full structured content of one end-of-day report by id (KPI status, shipped, silent, slipping, blockers). Requires the reports:read scope.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe report UUID.

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the transparency burden. It does add meaningful context: the permission scope required and the fields found in the full content. However, it doesn't disclose error behavior, response format, or explicitly state that this is a read-only operation. The term 'Get' implies read-only, but more explicit disclosure would be better given the absent annotations.

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 whole description is one well-formed sentence that front-loads the action and resource, then packs the field details and authentication requirement. Every word adds value, with no 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?

For a simple tool with a single parameter and no output schema, the description gives enough context via the field list and auth scope. It could be slightly more complete by clarifying returned structure or error cases, but given the tools rule set, it is close to sufficient.

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

Parameters3/5

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

The input schema fully covers the single parameter 'id' with 'The report UUID.' The description's 'by id' only restates the schema, adding no new semantic detail. Schema description coverage is 100%, so the baseline of 3 is appropriate.

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

Purpose5/5

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

The description clearly states the action and resource: 'Get the full structured content of one end-of-day report by id'. It also lists the report components (KPI status, shipped, silent, slipping, blockers), and the singular 'one...by id' differentiates it from the sibling tool list_reports.

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

Usage Guidelines4/5

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

The description conveys that this is for retrieving a single report by its id, and it mentions the 'reports:read' scope requirement. It does not explicitly name an alternative for listing reports, but the 'by id' phrasing gives a clear invocation context.

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.

TDQS

A3.5/5.0
Disambiguation5/5

Each tool has a clear, distinct purpose: retrieving a single report, listing reports, listing the team roster, and identifying the API key. No overlap in functionality or ambiguity in selection.

Naming Consistency4/5

All tools follow a verb_noun pattern (get_report, list_reports, list_team) except whoami, which is a single verb command. This is a minor deviation but standard and recognizable, so consistency is high.

Tool Count5/5

Four tools is well-scoped for a read-only EOD report and team management server. Each tool provides a necessary, non-redundant function without bloat.

Completeness5/5

The server covers the full read surface for its domain: listing reports, retrieving report details, listing team members, and authenticating the API key. No obvious missing operations for a read-only reports/team API.