search_stats
Pack: estat-japan · Endpoint: https://gateway.pipeworx.io/estat-japan/mcp
Search e-Stat statistical tables. Returns IDs and names for tables matching the query. Use the IDs with get_data / get_metadata.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Free-text (Japanese or English) |
limit | number | no | 1-100000 (default 20) |
start_position | number | no | 1-based row offset (default 1) |
lang | string | no | J (Japanese, default) | E (English) |
Example call
Arguments
{
"query": "失業率"
}
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":"search_stats","arguments":{"query":"失業率"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_stats', {
"query": "失業率"
});
More examples
{
"query": "unemployment rate",
"lang": "E",
"limit": 10
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Response from e-Stat getStatsList endpoint containing search results"
}
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.