- Home
- MCP servers
- Swedish Weather
Swedish Weather
- javascript
0
GitHub Stars
javascript
Language
3 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"robobobby-mcp-swedish-weather": {
"command": "node",
"args": [
"/path/to/mcp-swedish-weather/src/index.js"
]
}
}
}This Swedish weather MCP Server provides current conditions and hourly forecasts for Swedish locations by consuming the SMHI Open Data API. It is designed to be queried by MCP clients, enabling you to easily integrate official meteorological data into your automations and smart home scenarios.
How to use
You can use this MCP server from any MCP client by configuring it as a local MCP service. The server exposes tools to fetch current weather data for a location and to retrieve an hourly forecast up to 72 hours ahead. When you request data, provide a Swedish location through a city name, a specific address, or coordinates (latitude and longitude). If you provide a location that is not directly named in the built‑in list, the server will attempt geocoding to resolve it.
How to install
Prerequisites: ensure you have Node.js installed on your system (version 14 or newer is recommended) and access to npm. You will also need a working MCP client to connect to the server.
Step 1: Obtain the server code. Clone the repository or download the source to a local directory where you want to run the MCP server.
Step 2: Install dependencies. Navigate to the server directory and install its dependencies.
Step 3: Start the server. Run the provided runtime command to launch the MCP server locally. You will typically run Node with the path to the server entry script.
Additional notes
Data source: The server uses SMHI Open Data for weather information. This data is free to access and does not require authentication. The service is provided under an MIT license.
Features include a collection of over 30 Swedish city profiles (for example Stockholm, Malmö, Gothenburg, Kiruna, Åre), geocoding fallback for arbitrary Swedish locations, coordinate input support, and mapping of SMHI weather symbol codes to readable descriptions.
About the ecosystem: This MCP server is part of the Nordic MCP Suite, offering a coherent set of servers and a unified meta-server for Nordic weather data and related services.
Available tools
current_weather
Fetches the current weather conditions for a specified Swedish location, returning temperature, precipitation, wind, and sky status.
weather_forecast
Provides an hourly forecast up to 72 hours ahead for a given location, including temperature, weather symbols, and precipitation chances.