Finnish Meteorological Institute (FMI) MCP — observations, forecast, climate, and warnings for Finland (and limited Europe coverage). Keyless.
Part of Pipeworx — an MCP gateway connecting AI agents to 1394+ live data sources.
FMI's open data is served via OGC WFS (GML/XML). This pack normalizes a small subset of stored queries to JSON for typical agent use.
forecast(place, parameters?, timestep?)— multi-hour forecast for a place namelatest_observations(place, parameters?)— most recent observation valuesrecent_observations(place, parameters?, hours?)— last N hours of observationswarnings()— currently active weather warnings (Finland)
https://opendata.fmi.fi/wfs (OGC WFS stored queries).
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"fmi": {
"url": "https://gateway.pipeworx.io/fmi/mcp"
}
}
}Or connect to the full Pipeworx gateway for access to all 1394+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Fmi data" })
The gateway picks the right tool and fills the arguments automatically.
MIT