Weather MCP Server
Weather MCP Server
실제 날씨 조회 MCP 서버이며, HelloAgents 프레임워크 기반으로 개발되었습니다.
기능 특징
🌤️ 실시간 날씨 조회
🌍 중국 12개 주요 도시 지원
🔄 wttr.in API 사용 (키 불필요)
🚀 HelloAgents 프레임워크 기반
Related MCP server: Weather MCP Server
설치
pip install hello-agents requests사용 방법
직접 실행
python server.pyClaude Desktop에서 사용
~/Library/Application Support/Claude/claude_desktop_config.json(macOS) 또는 %APPDATA%\Claude\claude_desktop_config.json(Windows) 파일을 편집하세요:
{
"mcpServers": {
"weather": {
"command": "python",
"args": ["/path/to/server.py"]
}
}
}HelloAgents에서 사용하기
from hello_agents import SimpleAgent, HelloAgentsLLM
from hello_agents.tools import MCPTool
agent = SimpleAgent(name="天气助手", llm=HelloAgentsLLM())
weather_tool = MCPTool(server_command=["python", "server.py"])
agent.add_tool(weather_tool)
response = agent.run("北京今天天气怎么样?")API 도구
get_weather
지정한 도시의 현재 날씨를 가져옵니다.
매개변수:
city(string): 도시 이름 (중국어 및 영어 지원)
예시:
{
"city": "北京"
}반환:
{
"city": "北京",
"temperature": 10.0,
"feels_like": 9.0,
"humidity": 94,
"condition": "Light rain",
"wind_speed": 1.7,
"visibility": 10.0,
"timestamp": "2025-10-09 13:25:03"
}list_supported_cities
지원하는 모든 중국 도시를 나열합니다.
반환:
{
"cities": ["北京", "上海", "广州", "深圳", "杭州", "成都", "重庆", "武汉", "西安", "南京", "天津", "苏州"],
"count": 12
}get_server_info
서버 정보를 가져옵니다.
반환:
{
"name": "Weather MCP Server",
"version": "1.0.0",
"tools": ["get_weather", "list_supported_cities", "get_server_info"]
}지원 도시
베이징, 상하이, 광저우, 선전, 항저우, 청두, 충칭, 우한, 시안, 난징, 톈진, 쑤저우
영문 도시 이름을 사용하면 전 세계 어느 도시든 조회할 수 있습니다.
라이선스
MIT License
작성자
HelloAgents Team
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.
Related MCP Connectors
Free, keyless real-time weather and 7-day forecasts for any city worldwide.
Get current weather for any city and create images from your prompts. Streamline planning, reports…
Real-time weather conditions and multi-day forecasts via Open-Meteo — free, no API key required
Provide real-time and forecast weather information for locations in the United States using natura…
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceProvides real-time weather information for 12 major Chinese cities and global locations using the wttr.in API. Built with the HelloAgents framework, it requires no API keys and supports queries in both Chinese and English.5MIT
- AlicenseNot gradedqualityDmaintenanceEnables real-time weather queries for 12 major Chinese cities and global locations using the wttr.in API. Built on the HelloAgents framework with no API key required.MIT
- AlicenseNot gradedqualityDmaintenanceEnables real-time weather queries for 12 Chinese cities and global cities using English names via the wttr.in API.MIT
- AlicenseNot gradedqualityCmaintenanceEnables real-time weather queries for 12 major Chinese cities and global cities using the wttr.in API. Provides tools to get weather, list supported cities, and server info.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/Eric980305/weather-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server