luchtmeetnet_measurements
Pack: luchtmeetnet · Endpoint: https://gateway.pipeworx.io/luchtmeetnet/mcp
Get recent air pollution measurements from a Netherlands (RIVM Luchtmeetnet) measuring station: NO2, PM10, PM2.5 (PM25), ozone (O3), SO2, CO and more, hourly values in µg/m³. Station can be an NL number (“NL49012”) or a Dutch place name (“Amsterdam”, “Rotterdam”) — the first matching station is used. Example: luchtmeetnet_measurements({ station: “Amsterdam”, pollutant: “NO2”, hours: 6 })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
station | string | yes | Station number like “NL49012”, or a place/station name like “Amsterdam” or “Rotterdam-Pleinweg” |
pollutant | string | no | Pollutant formula: NO2, PM10, PM25 (PM2.5), O3, NO, SO2, CO, NH3, C6H6… Omit for all pollutants the station measures |
hours | number | no | How many hours back to fetch, 1-168 (default 6). Data updates hourly |
Example call
Arguments
{
"station": "Amsterdam",
"pollutant": "NO2",
"hours": 6
}
curl
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_measurements","arguments":{"station":"Amsterdam","pollutant":"NO2","hours":6}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('luchtmeetnet_measurements', {
"station": "Amsterdam",
"pollutant": "NO2",
"hours": 6
});
More examples
{
"station": "NL49012",
"hours": 24
}
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.