list_providers
Pack: dbnomics · Endpoint: https://gateway.pipeworx.io/dbnomics/mcp
List all statistics providers available in DBnomics (80+), including provider codes (e.g. ECB, BLS, EUROSTAT, IMF, OECD) and their names. Use provider codes with list_datasets and get_series.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/dbnomics/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_providers","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_providers', {});
Response shape
| Field | Type | Description |
|---|---|---|
_meta | object | |
nb_datasets | number | |
nb_series | number | |
providers | object | Available statistics providers |
Full JSON Schema
{
"type": "object",
"properties": {
"_meta": {
"type": "object",
"properties": {
"args": {
"type": "object",
"properties": {
"limit": {
"type": "number"
},
"offset": {
"type": "number"
}
}
},
"version": {
"type": "string"
}
}
},
"nb_datasets": {
"type": "number"
},
"nb_series": {
"type": "number"
},
"providers": {
"type": "object",
"properties": {
"docs": {
"type": "array",
"items": {
"type": "object",
"properties": {
"code": {
"type": "string"
},
"indexed_at": {
"type": "string"
},
"name": {
"type": "string"
},
"region": {
"type": "string"
},
"slug": {
"type": "string"
},
"terms_of_use": {
"type": "string"
},
"website": {
"type": "string"
}
}
}
},
"limit": {
"type": "number"
},
"num_found": {
"type": "number"
},
"offset": {
"type": "number"
}
},
"description": "Available statistics providers"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dbnomics": {
"url": "https://gateway.pipeworx.io/dbnomics/mcp"
}
}
}
See Getting Started for client-specific install steps.