luchtmeetnet_stations
Pack: luchtmeetnet · Endpoint: https://gateway.pipeworx.io/luchtmeetnet/mcp
List and search official Netherlands air quality measuring stations (RIVM Luchtmeetnet). Filter by place or station name (Amsterdam, Rotterdam, Utrecht, Den Haag…), or pass latitude/longitude to get the nearest stations with distance. Returns station number (e.g. “NL49012”), location, and coordinates — the station number feeds luchtmeetnet_measurements and luchtmeetnet_air_quality_index. Example: luchtmeetnet_stations({ search: “Amsterdam” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
search | string | no | Text filter on station location, e.g. “Amsterdam”, “Rotterdam”, “Utrecht”, “Van Diemenstraat” |
latitude | number | no | Latitude — together with longitude, returns stations sorted by distance (nearest first) |
longitude | number | no | Longitude — together with latitude, returns stations sorted by distance (nearest first) |
limit | number | no | Max stations to return, 1-102 (default 10) |
Example call
curl -X POST https://gateway.pipeworx.io/luchtmeetnet/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"luchtmeetnet_stations","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"luchtmeetnet": {
"url": "https://gateway.pipeworx.io/luchtmeetnet/mcp"
}
}
}
See Getting Started for client-specific install steps.