Skip to main content
Glama

Export Trakkr Data

export_data
Read-onlyIdempotent

Export visibility data as JSON or CSV.

Bulk export of Trakkr data for external analysis or reporting.

Args: brand_id: The brand to export (required). data_type: What to export: 'prompts', 'results', 'citations', or 'reports'. format: 'json' or 'csv'. Default 'json'. days: Lookback window, 1-365. Default 30. limit: Max rows, 1-10000. Default 1000.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
daysNo
limitNo
formatNojson
brand_idYes
data_typeYes
user_intentNoAnalytics hint: the user's latest request in one short sentence. Omit secrets and prior chat.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, destructiveHint=false, and openWorldHint=false, so the safety profile is covered. The description adds bulk-scope and the lookback/limit defaults, but says nothing about the output artifact itself (file, URL, or inline payload), which matters for an export tool. Above the annotation baseline but not rich.

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?

Front-loaded purpose sentence followed by a short context line and a compact Args block that maps one-to-one onto the parameters. Efficient overall; the second line is mildly redundant with the first but still adds the 'bulk/external' framing.

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

Completeness3/5

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

For a 6-parameter bulk export with no output schema, the definition covers inputs well but never describes what comes back — inline JSON/CSV, a download reference, or row-count behavior for the 1000/10000 limits. That is a real gap for an agent deciding how to report results.

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 only 17%, so the description must carry the load, and it documents 5 of 6 parameters with defaults and ranges (brand_id, data_type, format, days 1-365, limit 1-10000). It omits user_intent, the one parameter that actually carries a schema-level description, so the coverage gap is minor rather than serious.

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?

States a specific verb and resource ('Export visibility data as JSON or CSV', 'Bulk export of Trakkr data') and frames it as bulk external reporting, which separates it from the many get_* / list_* siblings. It does not name a sibling directly, so it stops short of 5.

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?

"for external analysis or reporting" implies when this is appropriate, and the 'Bulk' qualifier hints at the difference from per-item readers. However, there is no explicit statement of when NOT to use it (e.g., use get_results for a single query) or any prerequisites, so usage remains implied rather than stated.

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