mcp-server-weather-js
by hideya·★ 13·Score 33
A simple Node.js MCP server providing US weather forecasts and alerts via two tools.
Overview
This is a straightforward MCP server implementation for accessing weather information specifically in the United States. It provides two primary tools: 'get-forecast' for retrieving weather forecasts based on latitude/longitude coordinates, and 'get-alerts' for checking weather alerts by state code. The server is distributed as an npm package, making it easy to integrate with Claude Desktop or other MCP-compatible clients using npx.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this server when you need a lightweight solution for basic US weather information in your AI agent workflow.
When NOT to choose this
Don't choose this if you need weather data outside the US, historical weather information, or more detailed meteorological data.
Tools this server exposes
2 tools extracted from the READMEget-alertsstate: stringGet weather alerts for a US state
get-forecastlatitude: number, longitude: numberGet weather forecast for a location in the US
Comparable tools
Installation
Installation
- Install the npm package:
npm install @h1deya/mcp-server-weather- Add to Claude Desktop configuration:
Edit your claude_desktop_config.json and add:
{
"mcpServers": {
"weather": {
"command": "npx",
"args": [
"-y",
"@h1deya/mcp-server-weather"
],
}
}
}FAQ
- Can this server provide weather information for locations outside the US?
- No, this server is specifically designed to provide weather information for the United States only.
- How often is the weather data updated?
- The README doesn't specify the update frequency, but it pulls data from weather APIs.
Compare mcp-server-weather-js with
Last updated · Auto-generated from public README + GitHub signals.