Skip to main content
Glama
Zachwitte21
by Zachwitte21

Weather MCP Server

An MCP (Model Context Protocol) server that provides weather information tools using the National Weather Service (NWS) API.

Features

This MCP server exposes two tools for accessing weather data:

  • get_alerts: Get active weather alerts for any US state

  • get_forecast: Get detailed weather forecast for a specific location (latitude/longitude)

Related MCP server: Weather MCP Server

Requirements

  • Python >= 3.14

  • uv (recommended for dependency management)

Setup

  1. Clone this repository or download the source code

  2. Install dependencies using uv:

uv sync

Running the Server

The server runs using stdio transport for MCP communication:

uv run weather.py

Using with MCP Clients

To use this server with an MCP client (like Claude Desktop), add it to your MCP client configuration:

{
  "mcpServers": {
    "weather": {
      "command": "uv",
      "args": [
        "--directory",
        "c:\\Users\\Zachary\\Dev\\weather",
        "run",
        "weather.py"
      ]
    }
  }
}

Available Tools

get_alerts

Get active weather alerts for a US state.

Parameters:

  • state (string): Two-letter US state code (e.g., "CA", "NY", "TX")

Example:

get_alerts(state="CA")

get_forecast

Get weather forecast for a specific location.

Parameters:

  • latitude (float): Latitude of the location

  • longitude (float): Longitude of the location

Example:

get_forecast(latitude=37.7749, longitude=-122.4194)

Data Source

This server uses the National Weather Service API, which provides free weather data for US locations.

License

Add your license information here.

Available Tools

2 tools
get_alertsB

Get weather alerts for a US state.

Args: state: Two-letter US state code (e.g. CA, NY)

ParametersJSON Schema
NameRequiredDescriptionDefault
stateYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure but offers minimal information. It states what the tool does but doesn't describe response format, error conditions, rate limits, authentication needs, or whether it's a read-only operation. While 'Get' implies reading data, the description lacks the behavioral details needed for confident tool invocation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately concise with two sentences that directly address purpose and parameters. The structure is front-loaded with the core functionality, followed by parameter details. While efficient, the separation with 'Args:' creates minor formatting inconsistency but doesn't significantly impact readability.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (single parameter, no annotations, but with output schema), the description is minimally adequate. The presence of an output schema means return values don't need explanation in the description, but the description lacks context about what 'weather alerts' includes, data sources, or typical response structure. It meets basic requirements but leaves gaps in operational understanding.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds significant value beyond the input schema, which has 0% description coverage. It explains the 'state' parameter as 'Two-letter US state code (e.g. CA, NY)', providing crucial format guidance that the schema lacks. For a single parameter tool with no schema descriptions, this compensation is effective, though it could mention validation rules or error handling for invalid codes.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('Get') and resource ('weather alerts for a US state'), making it immediately understandable. However, it doesn't explicitly differentiate from its sibling tool 'get_forecast', which likely provides different weather data. The description avoids tautology by explaining what the tool does rather than just restating the name.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. While it mentions the sibling tool 'get_forecast' exists in the context, the description itself contains no comparison, prerequisites, or exclusion criteria. Users must infer usage from the tool name and description alone without explicit guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_forecastC

Get weather forecast for a location.

Args: latitude: Latitude of the location longitude: Longitude of the location

ParametersJSON Schema
NameRequiredDescriptionDefault
latitudeYes
longitudeYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It only states the basic action without mentioning critical traits like whether this is a read-only operation, potential rate limits, error handling, or what the forecast includes (e.g., temperature, precipitation). This leaves significant gaps in understanding the tool's behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core purpose in the first sentence, followed by a clear 'Args:' section. It's appropriately sized with no wasted words, though it could be slightly more structured by integrating the parameter details more seamlessly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (2 required parameters) and the presence of an output schema, the description is minimally adequate. It covers the basic purpose and parameters but lacks behavioral context and usage guidelines, making it incomplete for optimal agent decision-making despite the output schema handling return values.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description explicitly lists and describes the two parameters (latitude and longitude), adding meaning beyond the input schema, which has 0% description coverage. However, it doesn't provide details like valid ranges, coordinate systems, or examples, so it only partially compensates for the schema's lack of descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('Get') and resource ('weather forecast for a location'), making it immediately understandable. However, it doesn't explicitly differentiate from its sibling tool 'get_alerts', which might also relate to weather data, leaving some ambiguity about when to choose one over the other.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus its sibling 'get_alerts' or any alternatives. It lacks context about prerequisites, such as whether the location must be valid or if there are any usage limits, leaving the agent without clear usage instructions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 2 tool updates
    • First observedget_alerts
    • First observedget_forecast

TDQS

B3.1/5.0
Disambiguation5/5

The two tools have completely distinct purposes: get_alerts retrieves weather alerts for US states, while get_forecast provides forecasts for geographic coordinates. There is no overlap in functionality or target data, making them easily distinguishable.

Naming Consistency5/5

Both tools follow a consistent verb_noun pattern with 'get_' prefix (get_alerts, get_forecast). The naming is perfectly uniform and predictable across the tool set.

Tool Count2/5

With only two tools, this server feels severely under-scoped for a weather domain. A weather server should ideally include tools for current conditions, historical data, radar, or multiple forecast types, making this minimal set inadequate for comprehensive weather interactions.

Completeness2/5

The tool surface is highly incomplete for a weather server. It lacks fundamental operations like getting current conditions, historical weather, radar imagery, or air quality data. Agents will face significant gaps when trying to perform common weather-related tasks.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Provides access to National Weather Service (NWS) data, enabling users to retrieve active weather alerts for US states and weather forecasts for specific geographic coordinates.
    80
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Provides weather forecasts and alerts for US locations using the National Weather Service API. Supports getting detailed forecasts by coordinates and active weather alerts by state code.
    80
    GPL 3.0

Latest Blog Posts

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/Zachwitte21/weather-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server