get_series
Pack: dbnomics · Endpoint: https://gateway.pipeworx.io/dbnomics/mcp
Fetch a specific time series. Series identified by (provider, dataset, series_code). Include observations to get the actual data points.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
provider | string | yes | Provider code |
dataset | string | yes | Dataset code |
series_code | string | yes | Series code (dot-separated dimensions or named code) |
observations | boolean | no | Include data points (default true) |
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":"get_series","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
series | array | Series data with metadata |
Full JSON Schema
{
"type": "object",
"properties": {
"series": {
"type": "array",
"description": "Series data with metadata",
"items": {
"type": "object",
"properties": {
"provider_code": {
"type": "string",
"description": "Provider code"
},
"dataset_code": {
"type": "string",
"description": "Dataset code"
},
"series_code": {
"type": "string",
"description": "Series code"
},
"name": {
"type": "string",
"description": "Series name"
},
"unit": {
"type": "string",
"description": "Unit of measurement"
},
"frequency": {
"type": "string",
"description": "Data frequency (A/Q/M/D etc)"
},
"last_update": {
"type": "string",
"description": "Last update timestamp"
},
"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"
}
}
}
}
}
}
}
}
}
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.