find_series
Pack: dbnomics · Endpoint: https://gateway.pipeworx.io/dbnomics/mcp
Browse series with structured filters. Useful when you know the provider+dataset and want to enumerate series by dimensions.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
provider | string | yes | Provider code |
dataset | string | yes | Dataset code |
dimensions | object | no | Optional dimension filter map, e.g. {“FREQ”:“A”,“COUNTRY”:“DE”} |
additionalProperties | string | no | |
limit | number | no | 1-1000 (default 100) |
offset | number | no | 0-based offset |
observations | boolean | no | Include observations (default false to save bandwidth) |
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":"find_series","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
series | array | Series matching dimension filters |
limit | number | Limit applied |
offset | number | Offset applied |
total_count | number | Total series count |
Full JSON Schema
{
"type": "object",
"properties": {
"series": {
"type": "array",
"description": "Series matching dimension filters",
"items": {
"type": "object",
"properties": {
"series_code": {
"type": "string",
"description": "Series code"
},
"name": {
"type": "string",
"description": "Series name"
},
"dimensions": {
"type": "object",
"description": "Dimension values for series",
"additionalProperties": {
"type": "string"
}
},
"observations": {
"type": "array",
"description": "Time series data points (if requested)",
"items": {
"type": "object",
"properties": {
"date": {
"type": "string",
"description": "Observation date"
},
"value": {
"type": [
"number",
"null"
],
"description": "Observed value or null"
}
}
}
}
}
}
},
"limit": {
"type": "number",
"description": "Limit applied"
},
"offset": {
"type": "number",
"description": "Offset applied"
},
"total_count": {
"type": "number",
"description": "Total 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.