list_datasets

Pack: dbnomics · Endpoint: https://gateway.pipeworx.io/dbnomics/mcp

List all datasets available from a given provider.

Parameters

NameTypeRequiredDescription
providerstringyesProvider code (e.g. “ECB”, “BLS”, “EUROSTAT”)
limitnumberno1-1000 (default 100)
offsetnumberno0-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

FieldTypeDescription
datasetsarrayAvailable datasets for provider
limitnumberLimit applied
offsetnumberOffset applied
total_countnumberTotal 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.

Regenerated from source · build May 21, 2026