list_views
Pack: statbel-be · Endpoint: https://gateway.pipeworx.io/statbel-be/mcp
Browse/search Statbel (Statistics Belgium, be.STAT) saved statistical views.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Case-insensitive substring to match in the view name (any language). Omit to list all. |
locale | string | no | Optional filter to one language: “nl”, “fr”, “de” or “en”. |
limit | number | no | Max results to return (default 50, max 500). |
Example call
Arguments
{
"query": "house prices"
}
curl
curl -X POST https://gateway.pipeworx.io/statbel-be/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_views","arguments":{"query":"house prices"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_views', {
"query": "house prices"
});
More examples
{
"query": "employment",
"locale": "nl",
"limit": 20
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"statbel-be": {
"url": "https://gateway.pipeworx.io/statbel-be/mcp"
}
}
}
See Getting Started for client-specific install steps.