wu-weather-mcp
wu-weather-mcp
Ein MCP-Server, der jede persönliche Wetterstation (PWS) von Weather Underground als Tools in Claude verfügbar macht. Fragen Sie Claude nach aktuellen Bedingungen, täglichen Zusammenfassungen, stündlichen Verläufen und Stationsmetadaten – alles live von Ihrer Station abgerufen.
Voraussetzungen
Node.js 18+
Ein Weather Underground-Konto mit einer PWS
Ein Weather Underground API-Schlüssel (kostenlos)
Ihre Stations-ID (sichtbar in Ihrem WU-Dashboard, z. B.
KCALAKEF92)
Related MCP server: weather-mcp-server
Einrichtung
1. Klonen und installieren
git clone https://github.com/your-username/wu-weather-mcp.git
cd wu-weather-mcp
npm install2. Umgebung konfigurieren
cp .env.example .envBearbeiten Sie .env:
WU_API_KEY=your_api_key_here
WU_STATION_ID=your_station_id_here
WU_STATION_NAME=My Weather Station # optional — defaults to station ID3. Build
npm run build4. Testen
node build/index.jsDer Server startet über stdio und wartet auf MCP-Nachrichten. Drücken Sie Strg-C zum Beenden.
Claude Desktop-Integration
Fügen Sie dies zu Ihrer claude_desktop_config.json hinzu:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"wu-weather": {
"command": "node",
"args": ["/absolute/path/to/wu-weather-mcp/build/index.js"]
}
}
}Ersetzen Sie
/absolute/path/to/wu-weather-mcpdurch den tatsächlichen Pfad, unter dem Sie das Repo geklont haben. Unter macOS können Siepwdim geklonten Ordner ausführen, um diesen zu erhalten.
Starten Sie Claude Desktop nach dem Speichern neu. Ihre Wetter-Tools erscheinen automatisch.
Alternative: Anmeldedaten über Konfiguration statt .env übergeben
{
"mcpServers": {
"wu-weather": {
"command": "node",
"args": ["/absolute/path/to/wu-weather-mcp/build/index.js"],
"env": {
"WU_API_KEY": "your_api_key_here",
"WU_STATION_ID": "your_station_id_here",
"WU_STATION_NAME": "My Weather Station"
}
}
}
}Verfügbare Tools
Tool | Parameter | Beschreibung |
| — | Aktuelle Temperatur, Luftfeuchtigkeit, Wind, Druck, UV, Niederschlagsrate, Taupunkt, Sonneneinstrahlung |
|
| Tägliche Höchst-/Tiefst-/Durchschnittstemperatur, maximale Windböe, Gesamtniederschlag |
|
| Stündliche Temperatur, Luftfeuchtigkeit, Wind und Niederschlag |
| — | Stationsname, ID, Koordinaten, Höhe, Nachbarschaft |
Beispiel-Prompts
"Wie ist das Wetter gerade?"
"Zeig mir das Wetter der letzten 3 Tage."
"Wie war die stündliche Aufschlüsselung gestern Nachmittag?"
"Wie hoch liegt meine Wetterstation?"
Entwicklung
npm run dev # watch mode — recompiles on save
npm run build # one-off buildDer Quellcode befindet sich in src/index.ts. Führen Sie nach Änderungen einen neuen Build aus (npm run build).
Veröffentlichung auf npm
npm publishNach der Veröffentlichung können Benutzer das Tool ohne Klonen ausführen:
{
"mcpServers": {
"wu-weather": {
"command": "npx",
"args": ["-y", "wu-weather-mcp"],
"env": {
"WU_API_KEY": "your_api_key_here",
"WU_STATION_ID": "your_station_id_here"
}
}
}
}Hinweis: Prüfen Sie zuerst auf npmjs.com, ob der Paketname
wu-weather-mcpvor der Veröffentlichung verfügbar ist.
Lizenz
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBqualityCmaintenanceIntegrates the US National Weather Service API with Claude Desktop to provide real-time weather conditions, forecasts, and detailed weather metrics for any US location through natural language queries.21
- AlicenseNot gradedqualityCmaintenanceEnables Claude Desktop to query real-time weather information, forecasts, and history via the OpenWeatherMap API.1499MIT
- FlicenseNot gradedqualityDmaintenanceProvides 12 weather tools for conditions, forecasts, alerts, model imagery, radar, and 205 meteorological calculations, enabling weather data access and analysis through Claude Code.
- FlicenseAqualityCmaintenanceIntegrates the US National Weather Service API with Claude Desktop, enabling users to query current conditions and forecasts using natural language.2
Related MCP Connectors
US weather, alerts, earthquakes and elevation for AI agents, from NWS/NOAA and USGS. No API keys.
Search NOAA climate stations and datasets, fetch historical weather observations.
US weather & geo for AI agents: forecasts, alerts, earthquakes, elevation, geocoding. No keys.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Rankintosh/wu-weather-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server