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
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Free-text search |
limit | number | no | Results, 1-1000 (default 20) |
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":"search","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
series | array | List of matching time series |
limit | number | Number of results requested |
offset | number | Offset of results |
total_count | number | Total 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.