actual_generation_per_type

Pack: entso-e · Endpoint: https://gateway.pipeworx.io/entso-e/mcp

Actual generation per production type (solar, wind, nuclear, gas, …) per hour.

Parameters

NameTypeRequiredDescription
areastringyesBidding-zone EIC code
period_startstringyes
period_endstringyes

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":"actual_generation_per_type","arguments":{}}}'

Response shape

Always returns: query, time_series_count, time_series

FieldTypeDescription
queryobjectQuery parameters sent to ENTSO-E API
time_series_countnumberNumber of time series returned
time_seriesarrayArray of time series data by generation type
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 by generation type",
      "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 type (e.g., Solar, Wind, Nuclear)"
          },
          "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 generation data",
            "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": "Generation data points",
                  "items": {
                    "type": "object",
                    "properties": {
                      "position": {
                        "type": "number",
                        "description": "Position/index in period"
                      },
                      "value": {
                        "type": "number",
                        "description": "Generation in MW"
                      }
                    },
                    "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.

Regenerated from source · build May 21, 2026