Connects Claude to Statistics Netherlands (CBS/StatLine) via their OData API. Right now it exposes one tool: table_info, which pulls metadata for any StatLine table by ID, including title, summary, time periods, update frequency, and descriptions. Useful when you need Dutch national statistics on demographics, economics, or social indicators and want Claude to understand what's in a specific dataset before diving in. Part of the Pipeworx gateway, so you can either connect to this server standalone or access it through their broader collection of 250+ data sources. The ask_pipeworx wrapper lets you query in plain English instead of calling tools directly.
Statistics Netherlands (CBS / StatLine) OData MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
table_info | Metadata for one table: title, summary, time period covered, frequency, update status and description. Pass a table id like "37296eng". |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"cbs-nl": {
"url": "https://gateway.pipeworx.io/cbs-nl/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Cbs Nl data" })
The gateway picks the right tool and fills the arguments automatically.
MIT