Connects your MCP client to the Banco de Portugal's BPstat API for querying Portuguese central bank statistics without requiring authentication. Part of the Pipeworx gateway ecosystem, which aggregates 673+ data sources behind a unified interface. The specific tools exposed aren't documented in the source, but you can use the ask_pipeworx natural language interface to query Portuguese economic data, monetary statistics, and financial indicators in plain English rather than calling individual endpoints. Runs over streamable HTTP, so setup is just adding a URL to your config. Useful if you're building agents that need authoritative Portuguese macroeconomic data without managing API keys or parsing central bank data formats yourself.
BPstat — Banco de Portugal statistics API (Portuguese central bank). Keyless.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"bpstat-pt": {
"url": "https://gateway.pipeworx.io/bpstat-pt/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 Bpstat Pt data" })
The gateway picks the right tool and fills the arguments automatically.
MIT