mcp-swedish-weather
# mcp-swedish-weather 🇸🇪🌤️
MCP server for Swedish weather data using the **SMHI Open Data API**.
## Tools
- **current_weather** — Current conditions for any Swedish location
- **weather_forecast** — Hourly forecast up to 72 hours ahead
## Features
- 30+ built-in Swedish cities (Stockholm, Malmö, Gothenburg, Kiruna, Åre...)
- Geocoding fallback for any Swedish location
- Coordinate input support (lat,lon)
- SMHI Wsymb2 weather symbol codes mapped to readable descriptions
## Usage
```json
{
"mcpServers": {
"swedish-weather": {
"command": "node",
"args": ["/path/to/mcp-swedish-weather/src/index.js"]
}
}
}
```
## Data Source
[SMHI Open Data](https://opendata.smhi.se/apidocs/metfcst/index.html) — free, no authentication required. Official Swedish government meteorological data.
## Part of the Nordic MCP Suite
This is one of several Nordic MCP servers. See [mcp-nordic](https://github.com/robobobby/mcp-nordic) for the unified meta-server.
## License
MIT
TDQS
Scored across 2 tools
The two tools have clearly distinct purposes: one provides current weather data, while the other provides forecast data. There is no overlap or ambiguity between them, as each targets a specific temporal aspect of weather information.
Both tools follow a consistent naming pattern with a descriptive adjective_noun structure (current_weather, weather_forecast). The naming is uniform and predictable, making it easy to understand their functions at a glance.
With only two tools, the server feels thin for a weather domain that typically requires more comprehensive coverage, such as historical data, alerts, or location search. While the tools cover current and forecast data, the scope is limited and may not support complex agent workflows effectively.
The toolset is significantly incomplete for a weather server, lacking essential operations like historical weather data, location search/autocomplete, weather alerts, or multi-day forecasts. This creates gaps that could lead to agent failures when handling broader weather-related queries.