Skip to main content
Glama

get_change_events

Get every published or revised observation in order with a cursor. Poll by offset instead of re-pulling series. Same engine as /api/events and the vintage archive.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeNo'published' or 'revised'
limitNoPage size (bounded server-side)
sinceNoNon-negative integer offset from a previous page's cursor; omit to start at 0
seriesNoSeries key, slug, title, alias, or archive key.
artifactNoArtifact filter, e.g. 'econData'.

TDQS

A4.2/5.0
Behavior4/5

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

No annotations are provided, so the description carries the behavioral burden. It discloses that results come in order with a cursor, that it returns both published and revised observations, and that it shares an engine with other endpoints. It does not detail edge cases like rate limits or whether cursor offsets are stable, but it provides meaningful behavioral context beyond the raw schema.

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 three sentences with no filler. The first sentence states the purpose and the result ordering/cursor mechanism; the second explains the polling use case; the third ties it to known endpoints. Every sentence earns its place, and the most important information is front-loaded.

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 list/polling tool with no output schema, the description covers what it returns, the ordering, cursor mechanics, and relationship to sibling endpoints. It doesn't explicitly mention that no parameters are required or describe pagination behavior beyond 'bounded server-side' in the schema, but the provided context is largely sufficient for an agent to select and begin using the tool.

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?

Schema description coverage is 100%, so the schema itself fully documents all five parameters. The description adds a bit of context by explaining the polling model (the 'since' parameter as an offset), but it does not add meaning beyond what the schema descriptions already provide. This meets the baseline of 3.

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 clear, specific verb+resource: 'Get every published or revised observation in order with a cursor.' It distinguishes the tool by its cursor/offset polling model and explicitly compares it to related endpoints ('Same engine as /api/events and the vintage archive'). This allows an agent to understand what it does and how it differs from sibling tools like get_revisions or get_vintages.

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 gives explicit guidance on when to use this tool: 'Poll by offset instead of re-pulling series.' This conveys a clear use case compared to alternatives. It does not name a specific sibling tool as the alternative, but the context of 'polling' versus re-pulling makes the intended scenario clear. It lacks explicit 'when not to use' guidance, but for a data-retrieval tool this is adequate.

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

A4/5.0
Disambiguation3/5

Most tools have distinct purposes, but several clusters overlap: ask/brief/get_index all answer questions, get_revisions/get_vintages both cover historical data, and get_provenance/get_receipts/get_citation all support verification. Descriptions clarify some boundaries, but an agent could easily misselect between ask and get_index for tariff or cost questions.

Naming Consistency4/5

The naming pattern is largely consistent verb_noun with a strong get_ prefix (get_freshness, get_vintages, run_calculator, search_calculators). However, ask and brief break the convention as bare verbs, and lookup_tariff/optimize_sourcing use different verbs, creating minor but noticeable deviations.

Tool Count4/5

17 tools is at the high end of reasonable for a broad domain covering calculators, live data series, tariffs, sourcing optimization, and verification. It feels slightly heavy but each tool has a real function, and the count is justifiable given the breadth.

Completeness4/5

The tool surface covers the full research workflow: search, lookup, calculate, optimize, verify, cite, and monitor data freshness/revisions. Minor gaps include the lack of a direct series browser (search_site covers it) and the index family being collapsed into a single get_index tool rather than exposed individually.

Resources