Skip to main content
Glama

export_dataset

Read-only

LICENCE (sold on the Influence plan) — the WHOLE dataset, not a 100-row page: ratings (every rated provider with facets, trend, rubric + provenance), providers (the catalog with coverage + score), or history (every provider's full score time series — parallel date/composite/agent_readiness arrays across every scored build the catalog retains, with a movement summary per provider). history is the one nobody can reconstruct after the fact: it is the only record of what the catalog looked like on those dates. For media outlets and analysts licensing the data to publish rankings and trends. Every dataset exceeds one response, so they arrive in byte-budgeted chunks: while complete is false, call again with cursor set to next_cursor and concatenate data; the last page has complete: true and a null next_cursor. Attribute to apis.io and cite the rubric. Priced B3 (bulk export) — $0.002 per row, $0.50 minimum per call under pay-as-you-go; included in Understanding and Influence. See apis://prices.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cursorNoResume offset from a previous response's next_cursor. Omit for the first page; keep calling while next_cursor is not null.
contextNoOptional: why you are asking. One sentence — the task you are trying to complete, or what you expect to get back. Never included in the answer and never used to rank; it is read only when a result turns out to be wrong, which is when knowing the intent is what makes the report actionable.
datasetNoratings
co_brandNoOptional partner name for a co-branded license — stamps the attribution the license carries.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / properties / dataset / enum
      Previous value: -[
      -  "ratings",
      -  "providers"
      -]New value: +[
      +  "ratings",
      +  "providers",
      +  "history"
      +]
  2. Changed1 schema field changed
    • addedInput schema / properties / context
      Added value: +{
      +  "description": "Optional: why you are asking. One sentence — the task you are trying to complete, or what you expect to get back. Never included in the answer and never used to rank; it is read only when a result turns out to be wrong, which is when knowing the intent is what makes the report actionable.",
      +  "type": "string"
      +}
  3. Changed1 schema field changed
    • addedInput schema / properties / cursor
      Added value: +{
      +  "description": "Resume offset from a previous response's next_cursor. Omit for the first page; keep calling while next_cursor is not null.",
      +  "minimum": 0,
      +  "type": "integer"
      +}
  4. Changed1 schema field changed
    • addedInput schema / properties / co_brand
      Added value: +{
      +  "description": "Optional partner name for a co-branded license — stamps the attribution the license carries.",
      +  "type": "string"
      +}
  5. Added

TDQS

A4.5/5.0
Behavior4/5

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

Annotations declare readOnlyHint=true, and the description aligns with that by describing an export/read operation. The description adds meaningful behavioral context beyond the annotation: the dataset exceeds one response, pagination is cursor-based with a complete flag, chunks are byte-budgeted, and attribution is required. It does not contradict the annotation. A small gap is that it doesn't explicitly state the response shape, but the pagination behavior is well covered.

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

Conciseness4/5

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

The description is dense but front-loaded with the most important fact (whole dataset, not a page) and then flows through dataset options, pagination, attribution, and pricing. It is longer than ideal, but every sentence carries information an agent needs to call the tool correctly. The pricing detail is arguably extra, but it supports the licensing use case. Slight deduction for length and for burying the pagination protocol mid-description.

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 tool with no output schema, the description does a good job of explaining what comes back (chunks of data, complete flag, next_cursor) and how to handle it. It covers the three datasets, the pagination loop, attribution, and pricing. It doesn't describe the exact structure of each chunk or the movement summary format, but the description is sufficient for an agent to invoke the tool and handle the response correctly. The licensing/pricing context is a bonus that helps the agent decide whether this tool is appropriate.

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?

Schema description coverage is 75%, and the description adds meaning beyond the schema by explaining the dataset enum values in detail (what each dataset contains) and by describing the cursor pagination contract. The context parameter is explained in the schema, and the description reinforces the licensing/attribution context. The co_brand parameter is only lightly touched ('stamps the attribution'), but the schema already covers it. This is above the baseline 3 because the description enriches the dataset and cursor semantics.

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 states a specific verb ('export') and resource ('the WHOLE dataset'), and enumerates the three dataset options (ratings, providers, history) with what each contains. It also distinguishes itself from page-limited views by explicitly saying it is not a 100-row page, which differentiates it from sibling tools like get_rating_history or find_ratings.

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

Usage Guidelines5/5

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

The description explicitly names the intended audience ('media outlets and analysts licensing the data to publish rankings and trends'), explains the pagination protocol ('while complete is false, call again with cursor set to next_cursor and concatenate data'), and gives pricing/licensing context. It also warns that history is the one dataset that cannot be reconstructed after the fact, which is a strong when-to-use signal.

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