list_datasets
Pack: dbnomics · Endpoint: https://gateway.pipeworx.io/dbnomics/mcp
List all datasets available from a given provider.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
provider | string | yes | Provider code (e.g. “ECB”, “BLS”, “EUROSTAT”) |
limit | number | no | 1-1000 (default 100) |
offset | number | no | 0-based offset |
Example call
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_datasets","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
datasets | array | Available datasets for provider |
limit | number | Limit applied |
offset | number | Offset applied |
total_count | number | Total dataset count |
Full JSON Schema
{
"type": "object",
"properties": {
"datasets": {
"type": "array",
"description": "Available datasets for provider",
"items": {
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Dataset code"
},
"name": {
"type": "string",
"description": "Dataset name"
},
"last_update": {
"type": "string",
"description": "Last update timestamp"
},
"series_count": {
"type": "number",
"description": "Number of series"
}
}
}
},
"limit": {
"type": "number",
"description": "Limit applied"
},
"offset": {
"type": "number",
"description": "Offset applied"
},
"total_count": {
"type": "number",
"description": "Total dataset count"
}
}
}
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.