stat_ee_find_table
Pack: stat-ee · Endpoint: https://gateway.pipeworx.io/stat-ee/mcp
Search Statistics Estonia (Statistikaamet) for ESTONIA official statistics tables by plain-English keyword — “average monthly wage”, “population”, “GDP”, “unemployment”, “consumer price index”, “births”, “exports”. Returns each matching table with its full ready-to-use path, its English label chain (e.g. “Economy > Wages and salaries and labour costs > Wages and salaries”), and whether it is a folder or a table. START HERE for any question about Estonian data: hand the returned path straight to table_meta, then query_table, to get the figures. Searches English labels, so English words find the table even though the path ids themselves are Estonian slugs.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Plain-English words describing the statistic, e.g. “average monthly wage”, “unemployment rate”, “population by county”. All words must appear somewhere in a match’s label chain. |
path | string | no | Optional sub-path to search under, e.g. “majandus” (Economy) or “rahvastik” (Population). Default searches the whole tree. |
limit | number | no | Max matches to return (default 25, max 100). |
max_depth | number | no | Levels of the subject tree to walk below the starting path (default ${DEFAULT_MAX_DEPTH}, max ${HARD_MAX_DEPTH}). Tables sit 4-5 levels below the root. |
Example call
Arguments
{
"query": "average monthly wage"
}
curl
curl -X POST https://gateway.pipeworx.io/stat-ee/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"stat_ee_find_table","arguments":{"query":"average monthly wage"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('stat_ee_find_table', {
"query": "average monthly wage"
});
More examples
{
"query": "population"
}
{
"query": "unemployment"
}
{
"query": "wage",
"path": "majandus",
"limit": 3
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"stat-ee": {
"url": "https://gateway.pipeworx.io/stat-ee/mcp"
}
}
}
See Getting Started for client-specific install steps.