aria-mcp-elpriser
MCP server for fetching Danish electricity spot prices (DK1/DK2) using the free elprisenligenu.dk API, providing tools to get current price, cheapest hours, and price summaries.
README
aria-mcp-elpriser
MCP server exposing Danish electricity spot prices (DK1/DK2) — keyless, open-source.
Designed for use with ARIA, Kim Hjort's personal AI assistant, but works with any MCP-compatible client.
What it does
Provides four tools to fetch real-time and day-ahead Danish electricity spot prices from elprisenligenu.dk, which publishes Nord Pool spot prices sourced via Energi Data Service.
Important: All prices are raw Nord Pool spot prices and exclude Danish taxes, tariffs (Energinet, network operator), and transport costs. The total consumer price on your electricity bill is significantly higher.
Tools
| Tool | Description |
|---|---|
get_prices |
Hourly spot prices for a date (24 entries with local Copenhagen timestamps) |
get_current_price |
Spot price for the current hour |
get_cheapest_hours |
The N cheapest hours for a date, sorted ascending by price |
get_price_summary |
Min / max / avg + cheapest and most expensive hour for a date |
get_prices({ area?, date? })
Returns an array of 24 hourly { DKK_per_kWh, time_start_local, time_end_local } entries.
get_current_price({ area? })
Returns the single entry covering the current Europe/Copenhagen hour.
get_cheapest_hours({ area?, date?, count? })
Returns the count cheapest hours (default 3) sorted by price ascending. Use this to advise on the best time to run the dishwasher or charge an EV.
get_price_summary({ area?, date? })
Returns { area, date, min_DKK_per_kWh, max_DKK_per_kWh, avg_DKK_per_kWh, cheapest_hour, most_expensive_hour }.
Common parameters
area—"DK1"(West Denmark, postal codes > 4999) or"DK2"(East Denmark). Defaults to theDEFAULT_PRICE_AREAenv var, or"DK2"if not set.date—"today"(default),"tomorrow", or"YYYY-MM-DD".
Tomorrow's prices
Tomorrow's prices are published by Nord Pool around 13:00 CET. Before that, the API returns 404 and the tools return a clear message asking to try again later.
Data source & attribution
- API: elprisenligenu.dk — free, keyless public API
- Underlying data: Nord Pool spot prices via Energi Data Service
- No API key or registration required.
Requirements
- Node.js >= 20 (uses global
fetchandIntl.DateTimeFormat)
Environment variables
| Variable | Default | Description |
|---|---|---|
DEFAULT_PRICE_AREA |
DK2 |
Default price area when the area parameter is omitted. Set to DK1 for West Denmark. |
ARIA configuration
Add to your ARIA McpServers configuration:
{
"Name": "elpriser",
"Command": "npx",
"Args": ["-y", "aria-mcp-elpriser"],
"Env": {
"DEFAULT_PRICE_AREA": "DK2"
}
}
Omit the Env block to use the default (DK2). Set DEFAULT_PRICE_AREA to DK1 if you are on West Denmark (postal codes above 4999, i.e. Jutland and Funen outside the Lillebælt bridge area).
Development
npm install
npm run build
npm test
node dist/index.js # runs the stdio MCP server
License
MIT — see LICENSE.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.