# United States Weather Data Access

Provide real-time access to United States weather data through the National Weather Service. Enable applications to retrieve accurate and up-to-date weather information seamlessly. Enhance your proje…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add hellokitty-v/smithery-mcp-servers

# Browse available tools
npx -y @smithery/cli@latest tool list hellokitty-v/smithery-mcp-servers

# Get full schema for a tool
npx -y @smithery/cli@latest tool get hellokitty-v/smithery-mcp-servers get_current_weather

# Call a tool
npx -y @smithery/cli@latest tool call hellokitty-v/smithery-mcp-servers get_current_weather '{}'
```

## Direct MCP Connection

Endpoint: `https://smithery-mcp-servers--hellokitty-v.run.tools`

## Tools (6)

- `get_current_weather` — Get current weather conditions for a location in the United States. Perfect for 'What's the weather like in [US locatio…
- `get_weather_forecast` — Get multi-day weather forecast for a location in the United States. Perfect for 'What's the forecast for [US location]?…
- `get_hourly_forecast` — Get hour-by-hour weather forecast for a location in the United States. Perfect for 'What's the hourly forecast?' or 'Wi…
- `get_weather_alerts` — Get active weather alerts, warnings, watches, and advisories for locations in the United States. Perfect for 'Are there…
- `find_weather_stations` — Find weather observation stations near a location in the United States. Useful for getting station-specific data, findi…
- `get_local_time` — Get the current local time for a US location. Shows what time it is right now at the specified location.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get hellokitty-v/smithery-mcp-servers <tool-name>
```

---

Source: https://github.com/hellokitty-v/smithery-mcp-servers/tree/main/./weather
