query_table
Pack: hagstova-fo · Endpoint: https://gateway.pipeworx.io/hagstova-fo/mcp
POST a PxWeb query to a Hagstova Føroya table and return observations as json-stat2. body must be {query:[{code, selection:{filter,values}}], response:{format:‘json-stat2’}}. PxWeb rejects requests exceeding its cell limit — narrow each dimension’s selection.values using codes from table_meta.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
path | string | yes | e.g. “H2/UO/UO01/land_oyfj.px” |
body | object | yes | {query: [{code, selection: {filter, values}}], response: {format: “json-stat2”}} |
selection | unknown | no | |
response | unknown | no |
Example call
Arguments
{
"path": "H2/UO/UO01/land_oyfj.px",
"body": {
"query": [
{
"code": "Municipality",
"selection": {
"filter": "item",
"values": [
"0"
]
}
}
],
"response": {
"format": "json-stat2"
}
}
}
curl
curl -X POST https://gateway.pipeworx.io/hagstova-fo/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"query_table","arguments":{"path":"H2/UO/UO01/land_oyfj.px","body":{"query":[{"code":"Municipality","selection":{"filter":"item","values":["0"]}}],"response":{"format":"json-stat2"}}}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('query_table', {
"path": "H2/UO/UO01/land_oyfj.px",
"body": {
"query": [
{
"code": "Municipality",
"selection": {
"filter": "item",
"values": [
"0"
]
}
}
],
"response": {
"format": "json-stat2"
}
}
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"hagstova-fo": {
"url": "https://gateway.pipeworx.io/hagstova-fo/mcp"
}
}
}
See Getting Started for client-specific install steps.