list_providers

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

List all available statistics providers in DBnomics.

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_providers","arguments":{}}}'

Response shape

FieldTypeDescription
providersarrayAvailable statistics providers
Full JSON Schema
{
  "type": "object",
  "properties": {
    "providers": {
      "type": "array",
      "description": "Available statistics providers",
      "items": {
        "type": "object",
        "properties": {
          "code": {
            "type": "string",
            "description": "Provider code"
          },
          "name": {
            "type": "string",
            "description": "Provider name"
          },
          "region": {
            "type": "string",
            "description": "Geographic region"
          },
          "datasets_count": {
            "type": "number",
            "description": "Number of datasets"
          }
        }
      }
    }
  }
}

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