day_ahead_prices
Pack: entso-e · Endpoint: https://gateway.pipeworx.io/entso-e/mcp
Day-ahead auction prices (€/MWh) per hour for a bidding zone. Period is YYYYMMDDHHmm format (UTC).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
area | string | yes | Bidding-zone EIC code (e.g. “10YDE-VE-------2” Germany) |
period_start | string | yes | YYYYMMDDHHmm (UTC) |
period_end | string | yes | YYYYMMDDHHmm (UTC) |
Example call
curl -X POST https://gateway.pipeworx.io/entso-e/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"day_ahead_prices","arguments":{}}}'
Response shape
Always returns: query, time_series_count, time_series
| Field | Type | Description |
|---|---|---|
query | object | Query parameters sent to ENTSO-E API |
time_series_count | number | Number of time series returned |
time_series | array | Array of time series data |
Full JSON Schema
{
"type": "object",
"properties": {
"query": {
"type": "object",
"description": "Query parameters sent to ENTSO-E API"
},
"time_series_count": {
"type": "number",
"description": "Number of time series returned"
},
"time_series": {
"type": "array",
"description": "Array of time series data",
"items": {
"type": "object",
"properties": {
"mrid": {
"type": [
"string",
"null"
],
"description": "Market Resource ID"
},
"business_type": {
"type": [
"string",
"null"
],
"description": "Business type classification"
},
"psr_type": {
"type": [
"string",
"null"
],
"description": "Production source resource type"
},
"in_domain": {
"type": [
"string",
"null"
],
"description": "Inbound domain EIC code"
},
"out_domain": {
"type": [
"string",
"null"
],
"description": "Outbound domain EIC code"
},
"periods": {
"type": "array",
"description": "Time periods with data points",
"items": {
"type": "object",
"properties": {
"period_start": {
"type": [
"string",
"null"
],
"description": "Period start timestamp (ISO 8601)"
},
"period_end": {
"type": [
"string",
"null"
],
"description": "Period end timestamp (ISO 8601)"
},
"resolution": {
"type": [
"string",
"null"
],
"description": "Time resolution (e.g., PT60M for hourly)"
},
"points": {
"type": "array",
"description": "Data points with position and value",
"items": {
"type": "object",
"properties": {
"position": {
"type": "number",
"description": "Position/index in period"
},
"value": {
"type": "number",
"description": "Price (€/MWh) or quantity value"
}
},
"required": [
"position",
"value"
]
}
}
}
}
}
}
}
}
},
"required": [
"query",
"time_series_count",
"time_series"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"entso-e": {
"url": "https://gateway.pipeworx.io/entso-e/mcp"
}
}
}
See Getting Started for client-specific install steps.