DBnomics
liveEconomicsDataMeta-aggregator over 80+ statistics providers (ECB, BLS, Eurostat, FRED, IMF, OECD, WB + most national stats agencies). ~1B time series. No auth.
5tools
0msauth
free tier50 calls/day
Tools
searchrequired: queryFull-text search across all DBnomics providers.
Parameters
NameTypeDescription
queryreqstring—limitoptnumber1-1000offsetoptnumber—Try it
Response
list_providersList all available stats providers.
No parameters required.
Try it
Response
list_datasetsrequired: providerList datasets for a provider.
Parameters
NameTypeDescription
providerreqstring—limitoptnumber—offsetoptnumber—Try it
Response
get_seriesrequired: provider, dataset, series_codeFetch a specific time series.
Parameters
NameTypeDescription
providerreqstring—datasetreqstring—series_codereqstring—observationsoptboolean—Try it
Response
find_seriesrequired: provider, datasetBrowse series with dimension filters.
Parameters
NameTypeDescription
providerreqstring—datasetreqstring—dimensionsoptobject—limitoptnumber—offsetoptnumber—observationsoptboolean—Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/dbnomics/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Call a tool
bash
curl -X POST https://gateway.pipeworx.io/dbnomics/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search","arguments":{"query": "hello"}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search", {"query":"example"});ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("meta-aggregator over 80+ statistics providers (ecb, bls, eurostat, fred, imf, oecd, wb + most national stats agencies)");