Skip to main content
Glama

get_coverage

Read-onlyIdempotent

Report scrape coverage per monthly chunk, with totals for API, ingested, and unique counts. Filter by month range to view coverage percent and detailed rows.

Instructions

Use this to report scrape coverage per monthly chunk, with totals.

Optional date_from/date_to (YYYY-MM-DD) filter by chunk month. Returns rows newest-first plus totals (api/ingested/unique counts and coverage percent). Read-only.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum coverage rows to return (1..200).
date_toNoFilter by chunk month, YYYY-MM-DD.
date_fromNoFilter by chunk month, YYYY-MM-DD.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

The description adds behavioral context beyond the annotations by stating that rows are returned newest-first and that a totals object is included with specific counts and coverage percent. It also repeats the read-only nature, which is consistent with the annotations and reinforces safety.

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-loaded with the main purpose, and every sentence contributes useful information about scope, filters, result ordering, totals, and safety. There is no filler or redundancy.

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

Completeness5/5

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

For a simple read-only reporting tool with fully documented parameters and an output schema present, the description covers what the tool does, how results are ordered, what totals are returned, and its read-only behavior. An agent has enough to select and invoke it correctly.

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?

Input schema coverage is 100%, so the schema already documents all parameters. The description mostly restates the date_from/date_to filtering semantics and does not add substantial detail about the limit parameter. This meets the baseline but adds little beyond the schema.

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 opens with a specific verb and resource: 'report scrape coverage per monthly chunk, with totals.' This clearly distinguishes it from the sibling tools like get_statistics or count_filings, which relate to different report types. The scope is precise and actionable.

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 phrase 'Use this to report scrape coverage per monthly chunk' gives an explicit intended use case. However, it does not mention when not to use it or name any alternative tools, leaving some differentiation to inference from the sibling list.

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