search

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

Full-text search across all providers. Returns matching series with provider/dataset/series codes and human labels.

Parameters

NameTypeRequiredDescription
querystringyesFree-text search
limitnumbernoResults, 1-1000 (default 20)
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":"search","arguments":{}}}'

Response shape

FieldTypeDescription
seriesarrayList of matching time series
limitnumberNumber of results requested
offsetnumberOffset of results
total_countnumberTotal matching series count
Full JSON Schema
{
  "type": "object",
  "properties": {
    "series": {
      "type": "array",
      "description": "List of matching time series",
      "items": {
        "type": "object",
        "properties": {
          "provider_code": {
            "type": "string",
            "description": "Provider identifier"
          },
          "dataset_code": {
            "type": "string",
            "description": "Dataset identifier"
          },
          "series_code": {
            "type": "string",
            "description": "Series identifier"
          },
          "series_name": {
            "type": "string",
            "description": "Human-readable series name"
          }
        }
      }
    },
    "limit": {
      "type": "number",
      "description": "Number of results requested"
    },
    "offset": {
      "type": "number",
      "description": "Offset of results"
    },
    "total_count": {
      "type": "number",
      "description": "Total matching series 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