Weather MCP Server
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 ServerAny weather alerts in Texas?"
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 mini project demonstrating how to build and use a Model Context Protocol (MCP) server with Python.
Features
Weather Alerts Tool
Weather Forecast Tool
SSE Transport
STDIO Transport
MCP Client Integration
Docker Support
Async Python Implementation
Related MCP server: Weather-MCP-Server
Project Structure
mcpcrashcourse/
│
├── server/
│ └── mcpserver/
│ ├── server.py
│ ├── client-sse.py
│ ├── client-stdio.py
│ ├── Dockerfile
│ └── requirements.txt
│
├── weather.py
├── weather.json
├── client.py
├── README.md
├── pyproject.toml
└── uv.lockTools
get_alerts
Returns active weather alerts for a US state.
Example:
get_alerts("CA")get_forecast
Returns forecast information based on latitude and longitude.
Example:
get_forecast(
latitude=37.7749,
longitude=-122.4194
)Transports
STDIO
Used for local MCP communication.
SSE
Used for remote communication through HTTP.
Running the Server
STDIO
uv run server/mcpserver/server.pySSE
Configure transport as:
mcp.run(transport="sse")Then:
uv run server/mcpserver/server.pyRunning Clients
SSE Client
uv run server/mcpserver/client-sse.pySTDIO Client
uv run server/mcpserver/client-stdio.pyDocker
Build:
docker build -t weather-mcp .Run:
docker run weather-mcpTechnologies Used
Python
MCP
FastMCP
HTTPX
AsyncIO
Docker
SSE
STDIO
Learning Outcomes
Building MCP tools
Creating MCP servers
Working with MCP clients
Using SSE transport
Using STDIO transport
Tool invocation
Agent-tool communication
Dockerizing MCP applications
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
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/Amann001/weather-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server