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-serverWhat's the weather in Tokyo for the next 3 days?"
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
An MCP server wrapping the Open-Meteo geocoding and forecast APIs. No API key required.
Install
pip install -r requirements.txtRelated MCP server: Weather MCP
Run
Stdio (default, for local agent clients):
python server.pySSE (for remote/hosted clients):
python server.py sse
# serves on http://localhost:8000/sseTool reference
Tool | Args | Returns |
|
|
|
|
|
|
|
|
|
Resource
weather://{city} — read-only current-conditions summary for a city, e.g. weather://Tokyo.
Prompt
weather_report(city: str) — template that asks an agent to produce a short, friendly
3-day weather report for a city using get_weather_by_city.
Connect from an Agents SDK client
from agents import Agent, Runner
from agents.mcp import MCPServerStdio, MCPServerStdioParams
async with MCPServerStdio(
name="Weather Tools",
params=MCPServerStdioParams(command="python", args=["server.py"]),
) as weather_server:
agent = Agent(
name="Weather Assistant",
instructions="Use the weather tools to answer the user's question.",
mcp_servers=[weather_server],
)
result = await Runner.run(agent, "What's the weather in Tokyo this week?")
print(result.final_output)See client_stdio_test.py and client_sse_test.py for full runnable examples of each
transport.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/ariz-ahmad/weather-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server