Skip to main content
Glama

Get Data

get_data
Read-onlyIdempotent

Fetch observations from a stats table. Optionally filter by dimension codes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
langNoJ | E
limitNo1-100000 (default 100)
filtersNoDimension code filters as { "cdCat01":"A03503", "cdTime":"2023" }
stats_data_idYesTable ID (statsDataId)
start_positionNo1-based row offset

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changed
    • changedInput schema / examples
      Previous value: -[
      -  {
      -    "stats_data_id": "0003000010000"
      -  },
      -  {
      -    "filters": {
      -      "cdArea": "00000",
      -      "cdTime": "2023"
      -    },
      -    "limit": 50,
      -    "stats_data_id": "0003000010000"
      -  }
      -]New value: +[
      +  {
      +    "limit": 3,
      +    "stats_data_id": "0000150001"
      +  },
      +  {
      +    "filters": {
      +      "cdArea": "00000",
      +      "cdCat02": "001"
      +    },
      +    "limit": 5,
      +    "stats_data_id": "0000150001"
      +  }
      +]
  2. Changed2 schema fields changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "stats_data_id": "0003000010000"
      +  },
      +  {
      +    "filters": {
      +      "cdArea": "00000",
      +      "cdTime": "2023"
      +    },
      +    "limit": 50,
      +    "stats_data_id": "0003000010000"
      +  }
      +]
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "description": "Response from e-Stat getStatsData endpoint containing observations",
      +  "type": "object"
      +}
  3. First observed

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already communicate read-only, idempotent, and non-destructive behavior, so the description does not need to restate safety. It adds only mild context ('stats table', optional filters) and does not contradict the annotations; rate limits or pagination behavior are not disclosed, but the schema covers pagination parameters.

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 one efficient sentence with the core action front-loaded and the optional behavior at the end. Every word earns its place with no fluff or repetition.

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?

With a rich input schema, examples, an output schema, and safety annotations, the description is mostly complete for invoking the tool correctly. The only notable gap is the lack of explicit routing away from search/get_metadata siblings, but the required stats_data_id and examples make invocation unambiguous.

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 parameters are already documented with meanings and examples. The description adds no extra parameter detail beyond 'dimension codes', which the filter property description already explains.

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?

The description names a specific verb and resource ('Fetch observations from a stats table') and mentions optional dimension-code filtering, so an agent understands the core operation. It does not explicitly distinguish itself from siblings like search_stats or get_metadata, which prevents a 5.

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

Usage Guidelines2/5

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

The description provides no when-to-use or when-not-to-use guidance and never references alternative tools. 'Optionally filter by dimension codes' is about invocation, not tool selection, so an agent is left to infer when get_data is preferred over search_stats or get_metadata.

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.6/5.0
Disambiguation3/5

Many tools have overlapping purposes, especially the ask_pipeworx variants and Polymarket tools, but detailed descriptions help differentiate. Some tools like 'discover_tools' and 'suggest_questions' also have similar discovery roles, causing potential confusion.

Naming Consistency3/5

Names follow snake_case but lack a consistent pattern: some start with verbs (e.g., 'ask_pipeworx', 'compare_entities'), others with nouns (e.g., 'entity_profile', 'recent_changes'), and prefixes like 'pipeworx_' and 'polymarket_' are used sporadically, making the naming scheme mixed but still readable.

Tool Count2/5

35 tools is excessive for a server named 'Estat Japan', which should focus on Japanese statistics. The majority of tools are general-purpose Pipeworx tools, diluting the scope and making the count feel bloated for the stated purpose.

Completeness2/5

The e-Stat tools (list_data_catalog, search_stats, get_metadata, get_data) provide basic read-only access but lack update or delete operations. The inclusion of many unrelated tools leaves significant gaps for Japanese statistics, and the overall surface is incomplete for the server's implied domain.