get_data

Pack: estat-japan · Endpoint: https://gateway.pipeworx.io/estat-japan/mcp

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

Parameters

NameTypeRequiredDescription
stats_data_idstringyesTable ID (statsDataId)
limitnumberno1-100000 (default 100)
start_positionnumberno1-based row offset
langstringnoJ | E
filtersobjectnoDimension code filters as { “cdCat01”:“A03503”, “cdTime”:“2023” }
additionalPropertiesstringno

Example call

Arguments

{
  "stats_data_id": "0003000010000"
}

curl

curl -X POST https://gateway.pipeworx.io/estat-japan/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_data","arguments":{"stats_data_id":"0003000010000"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_data', {
  "stats_data_id": "0003000010000"
});

More examples

{
  "stats_data_id": "0003000010000",
  "filters": {
    "cdArea": "00000",
    "cdTime": "2023"
  },
  "limit": 50
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Response from e-Stat getStatsData endpoint containing observations"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "estat-japan": {
      "url": "https://gateway.pipeworx.io/estat-japan/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026