MCP Catalogs
Home

mcp-server-weather-js

by hideya·13·Score 33

A simple Node.js MCP server providing US weather forecasts and alerts via two tools.

weatherother
10
Forks
2
Open issues
14 mo ago
Last commit
2d ago
Indexed

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:

you:Checking weather forecasts for specific locations in the US
you:Receiving weather alerts for particular states
you:Integrating weather information into AI workflows
you:Can this server provide weather information for locations outside the US?
you:How often is the weather data updated?

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 README
  • get-alertsstate: string

    Get weather alerts for a US state

  • get-forecastlatitude: number, longitude: number

    Get weather forecast for a location in the US

Comparable tools

mcp-server-openweathermapmcp-server-weather-apiweatherapi-mcp

Installation

Installation

  1. Install the npm package:
npm install @h1deya/mcp-server-weather
  1. 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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.