weather-mcp-server
Click on "Deploy 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 current weather in Beijing?"
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
Real-time weather query MCP server based on the HelloAgents framework and wttr.in.
Features
get_weather— current weather for a city (Chinese mapped names + English names)list_supported_cities— list built-in Chinese city mappings (80+)get_server_info— server metadata
Related MCP server: MCP Weather Server
Quick start (local stdio)
pip install -r requirements.txt
MCP_TRANSPORT=stdio python server.pyConnect with HelloAgents:
from hello_agents.tools import MCPTool
tool = MCPTool(
name="weather",
server_command=["python", "server.py"],
# set MCP_TRANSPORT=stdio in env when launching, or:
)Or:
import os
os.environ["MCP_TRANSPORT"] = "stdio"
from hello_agents.protocols import MCPClient
# MCPClient(["python", "server.py"])Docker / Smithery (HTTP on :8081)
docker build -t weather-mcp-server .
docker run --rm -p 8081:8081 weather-mcp-serverEndpoint: http://localhost:8081/mcp
Publish to Smithery
Create a GitHub repo named
weather-mcp-serverunder MichealLewisPush this folder to the repo
Open https://smithery.ai/, sign in with GitHub
Click Publish Server and paste:
https://github.com/MichealLewis/weather-mcp-server
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for weather with reasoning — umbrella advice, outdoor checks, city comparisons.
An MCP server for weather information by @kulybaba
An MCP server for weather information by @kulybaba
Hosted MCP server for Xweather weather data: conditions, forecasts, alerts, and more.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAn MCP server that provides real-time weather data, hourly forecasts, and daily summaries using the free Open-Meteo API with no API key required. It enables users to search for weather conditions by specific coordinates or city names across multiple measurement units.2MIT
- FlicenseAqualityDmaintenanceA weather query MCP server providing current weather, forecasts, temperature conversion, and travel weather advice using wttr.in without API tokens.3-
- FlicenseNot gradedqualityBmaintenanceA minimal MCP server that provides current weather and forecasts for any city using the free Open-Meteo API, no API key required.9 npm-
- AlicenseNot gradedqualityCmaintenanceReal-time weather query MCP server for Chinese cities and global cities using wttr.in API.MIT