aria-mcp-affald-horsens
MCP server that provides household waste collection schedules for Horsens Kommune, Denmark, allowing address search and retrieval of next collection dates or calendars.
README
aria-mcp-affald-horsens
A Model Context Protocol (MCP) server for household waste collection schedules in Horsens Kommune. Built for ARIA and shareable with the community.
Example output ARIA might give Kim:
i aften: rest/madaffald ud (tømmes mandag den 15. juni) næste papir/pap: tirsdag den 23. juni (om 10 dage)
Data Source
Data is fetched from PerfectWaste (https://europe-west3-perfect-waste.cloudfunctions.net), the backend powering Horsens Kommune's waste portal. The API is unofficial and undocumented — it was reverse-engineered from the portal and community Home Assistant integrations. There is no guarantee of stability; Horsens might migrate providers without notice.
The legacy horsens.renoweb.dk ASMX endpoint (GetAffaldsplanMateriel_mitAffald) is MitID-gated and cannot be used headlessly. Only address search on that endpoint is unauthenticated, but it is useless without schedule access. PerfectWaste is fully headless with no auth.
Best-effort only. Always verify collection dates at horsens.dk/affald.
Install & Run
npx aria-mcp-affald-horsens
Or install globally:
npm install -g aria-mcp-affald-horsens
aria-mcp-affald-horsens
Requires Node.js 20 or later.
Tools
find_address
Search for a Horsens address and return PerfectWaste address candidates (id + display name).
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
query |
string | Yes | Address string to search (e.g. "Vestergade 5", "Søndergade 1, 8700 Horsens") |
Returns:
{
"query": "Vestergade 5",
"candidates": [
{ "addressID": "39429", "displayName": "Vestergade 5, 8732 Hovedgård" },
{ "addressID": "47864", "displayName": "Vestergade 5, 8700 Horsens" }
]
}
next_collection
Return the next upcoming collection date for each waste fraction at an address.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
address |
string | Yes | Free-text address or raw PerfectWaste addressID (digits only) |
Returns:
{
"addressID": "47864",
"addressDisplay": "Vestergade 5, 8700 Horsens",
"asOf": "2026-06-13T08:00",
"nextByFraction": [
{
"fractionName": "Rest - Mad",
"date": "2026-06-15T00:00:00.000Z",
"dateLocal": "2026-06-15",
"dateLabel": "mandag den 15. juni 2026",
"daysUntil": 2,
"putOutTonight": false
},
{
"fractionName": "Papir, pap og tekstilaffald",
"date": "2026-06-23T00:00:00.000Z",
"dateLocal": "2026-06-23",
"dateLabel": "tirsdag den 23. juni 2026",
"daysUntil": 10,
"putOutTonight": false
},
{
"fractionName": "Plast og drikkekarton - Glas og metal",
"date": "2026-06-26T00:00:00.000Z",
"dateLocal": "2026-06-26",
"dateLabel": "fredag den 26. juni 2026",
"daysUntil": 13,
"putOutTonight": false
}
],
"notice": "Data source: PerfectWaste (unofficial API, Horsens Kommune). ..."
}
putOutTonight is true when the collection is tomorrow — use it for reminders like "i aften: rest/madaffald ud".
collection_calendar
Return all upcoming collection events for the next N weeks.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
address |
string | Yes | Free-text address or raw PerfectWaste addressID |
weeks |
number | No | Look-ahead in weeks (default 4, max 52) |
Returns: Same fields as next_collection events but as a flat chronological list covering the full window.
Environment Variables
| Variable | Default | Description |
|---|---|---|
RENOWEB_HOST |
https://europe-west3-perfect-waste.cloudfunctions.net |
Override the PerfectWaste base URL. Useful if another kommune uses the same backend at a different endpoint. |
RENOWEB_MUNICIPALITY |
615 |
Municipality code. 615 = Horsens. Other PerfectWaste kommuner may use different codes. |
The RENOWEB_* names are intentional — they keep the interface familiar and forward-compatible if a true RenoWeb headless path is discovered later.
ARIA MCP Config
Add to your ARIA MCP config (mcpServers in ARIA credentials):
{
"command": "npx",
"args": ["-y", "aria-mcp-affald-horsens"],
"env": {}
}
ARIA can then answer questions like:
- "hvornår tømmes papir næste gang?"
- "hvad skal ud i aften?"
- "vis affaldskalender for de næste 4 uger på Vestergade 5"
Fragility Notes
- API is undocumented. PerfectWaste has no published SLA for this endpoint. It has been stable since at least early 2026, but could break without notice.
- Municipality codes. The
615code for Horsens was discovered empirically. Other kommuner using PerfectWaste will have different codes. - Address coverage. Some commercial/institutional addresses (e.g. Rådhustorvet 4) return empty collection data — the portal apparently only covers residential collection routes.
- Calendar depth. PerfectWaste typically returns ~3 months of data. The
weeksparameter is capped client-side.
Development
git clone https://github.com/kimhjort/aria-mcp-affald-horsens
cd aria-mcp-affald-horsens
npm install
npm run build
npm test
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.