Connects Claude to Moldova's national statistics bureau via the PxWeb API. You get two tools: table_meta to inspect table schemas and dimensions, and query_table to pull actual data using PxWeb query objects. Useful when you need official demographic, economic, or social statistics from Moldova without scraping or manual downloads. Part of the Pipeworx gateway, so you can either connect to this standalone server or access it through the full gateway alongside 693 other data sources. Supports the ask_pipeworx natural language interface if you want to skip writing query objects yourself. Keep result sets under 10,000 cells to avoid timeouts.
National Bureau of Statistics of Moldova (Statbank) PxWeb MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 693+ live data sources.
| Tool | Description |
|---|---|
table_meta | Table definition (dimensions, valid values). Path must end in the ".px" table id. |
query_table | Pull data from a table (POST). body is a PxWeb query object. Keep selected cells under ~10,000. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"statbank-md": {
"url": "https://gateway.pipeworx.io/statbank-md/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 693+ 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 Statbank Md data" })
The gateway picks the right tool and fills the arguments automatically.
MIT