Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Weather MCP Serverget the forecast for San Francisco"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Weather MCP Server
A Model Context Protocol (MCP) server that provides weather forecast and alert information for US locations. Referenced these docs.
Features
Weather Forecasts: Get detailed weather forecasts for any location using latitude/longitude coordinates
Weather Alerts: Retrieve active weather alerts for US states
Real-time data from the National Weather Service
Installation
Prerequisites
Python 3.10 or higher
Setup
Clone this repository:
git clone https://github.com/penguyen72/python-mcp
cd python-mcpUsage
Configuration
Add the server to your MCP client configuration. For Claude Desktop, add this to your config file:
MacOS:
code ~/Library/Application\ Support/Claude/claude_desktop_config.jsonWindows:
code $env:AppData\Claude\claude_desktop_config.jsonConfig:
{
"mcpServers": {
"weather": {
"command": "uv",
"args": [
"--directory",
"/ABSOLUTE/PATH/TO/PARENT/FOLDER/weather",
"run",
"weather.py"
]
}
}
}Available Tools
weather:get_forecast
Get weather forecast for a specific location.
Parameters:
latitude(number, required): Latitude of the locationlongitude(number, required): Longitude of the location
Example:
{
"latitude": 38.5816,
"longitude": -121.4944
}weather:get_alerts
Get active weather alerts for a US state.
Parameters:
state(string, required): Two-letter US state code (e.g., "CA", "NY", "TX")
Example:
{
"state": "CA"
}API Data Source
This server uses the National Weather Service API to retrieve weather data for US locations.
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.