中国城市天气查询 MCP 服务
ACAne0320
README
中国城市天气查询 MCP 服务
基于高德地图 API 的中国城市天气查询 Model Context Protocol (MCP) 服务。该服务允许用户通过简单的请求获取中国各城市的实时天气状况和未来几天的天气预报。
功能特点
- 使用高德地图天气 API 获取精确的中国城市天气数据
- 支持查询实时天气状况
- 支持查询未来 3-4 天的天气预报
- 支持智能城市名称识别,包括城市、区县级别的查询
- 支持城市名称搜索功能
- 实现为标准 MCP 服务,易于集成到 AI 应用中
安装说明
前提条件
- 高德地图开发者 API 密钥(需通过环境变量配置)
安装步骤
- 克隆或下载本仓库
- 进入项目目录
- 使用 uv 安装依赖:
uv venv
source .venv/bin/activate
uv add "mcp[cli]" httpx
使用方法
启动 MCP 服务
如果你需要自行创建客户端测试该 MCP 服务,请手动启动。 在终端中执行以下命令启动 MCP 服务:
uv run weather.py
使用集成的 MCP 服务
在 Claude Desktop 中使用
如果想在 Claude Desktop 中使用,请添加服务器配置:
请在文本编辑器中打开 Claude for Desktop App 配置,路径参考如下 ~/Library/Application Support/Claude/claude_desktop_config.json
如果文件不存在,请确保创建该文件。
{
"mcpServers": {
"amap-weather-mcp-server": {
"command": "uv",
"args": [
"--directory",
"/ABSOLUTE/PATH/TO/PARENT/FOLDER/weather",
"run",
"weather.py"
],
"env": {
"AMAP_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
在 Cherry Studio 中使用
如下图所示配置即可:
调用服务
MCP 服务提供了三个主要工具函数用于天气查询:
get_current_weather
: 获取城市当前天气状况get_weather_forecast
: 获取未来几天的天气预报search_city
: 搜索城市名称
使用 MCP 客户端调用示例:
from mcp.client import Client
# 连接到服务
client = Client("amap-weather-mcp-server")
# 查询实时天气
current_weather = await client.get_current_weather("北京市")
print(current_weather)
# 查询天气预报
forecast = await client.get_weather_forecast("上海市")
print(forecast)
# 搜索城市名称
cities = await client.search_city("广州")
print(cities)
API 参考
get_current_weather
获取指定城市的实时天气数据。
参数:
city
: 中国城市名称,需要包含省/市/县等行政区划标识,如"北京市"、"上海市"、"海珠区"等
返回: 格式化的城市实时天气信息字符串,包括:
- 城市名称
- 天气状况
- 温度
- 风向
- 风力
- 湿度
- 发布时间
get_weather_forecast
获取指定城市的天气预报(未来3-4天)。
参数:
city
: 中国城市名称,需要包含省/市/县等行政区划标识,如"北京市"、"上海市"、"浙江省杭州市"等
返回: 格式化的城市天气预报信息字符串,包括:
- 城市名称
- 未来几天的日期
- 白天和夜间天气状况
- 白天和夜间温度
- 白天和夜间风向、风力
search_city
根据关键词搜索匹配的城市名称。
参数:
keyword
: 城市名称关键词,建议包含省/市/县等行政区划标识,如"广州市"、"海珠区"等
返回: 包含匹配城市名称列表的字符串。
数据来源
本服务使用高德地图开放平台提供的天气数据 API:
- 实时天气数据 API: https://restapi.amap.com/v3/weather/weatherInfo
- 城市编码数据: AMap_adcode_citycode.csv
注意事项
- 该服务仅支持中国大陆地区的城市天气查询
- 高德地图 API 可能有请求频率限制
- 城市名称识别支持直接输入城市名称或区县名称(建议带上行政区划标识如"市"、"县"、"区"等)
- 环境变量必须正确配置,否则API请求将失败
许可证
Recommended Servers
Crypto Price & Market Analysis MCP Server
A Model Context Protocol (MCP) server that provides comprehensive cryptocurrency analysis using the CoinCap API. This server offers real-time price data, market analysis, and historical trends through an easy-to-use interface.
MCP PubMed Search
Server to search PubMed (PubMed is a free, online database that allows users to search for biomedical and life sciences literature). I have created on a day MCP came out but was on vacation, I saw someone post similar server in your DB, but figured to post mine.
dbt Semantic Layer MCP Server
A server that enables querying the dbt Semantic Layer through natural language conversations with Claude Desktop and other AI assistants, allowing users to discover metrics, create queries, analyze data, and visualize results.
mixpanel
Connect to your Mixpanel data. Query events, retention, and funnel data from Mixpanel analytics.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.

Nefino MCP Server
Provides large language models with access to news and information about renewable energy projects in Germany, allowing filtering by location, topic (solar, wind, hydrogen), and date range.
Vectorize
Vectorize MCP server for advanced retrieval, Private Deep Research, Anything-to-Markdown file extraction and text chunking.
Mathematica Documentation MCP server
A server that provides access to Mathematica documentation through FastMCP, enabling users to retrieve function documentation and list package symbols from Wolfram Mathematica.
kb-mcp-server
An MCP server aimed to be portable, local, easy and convenient to support semantic/graph based retrieval of txtai "all in one" embeddings database. Any txtai embeddings db in tar.gz form can be loaded
Research MCP Server
The server functions as an MCP server to interact with Notion for retrieving and creating survey data, integrating with the Claude Desktop Client for conducting and reviewing surveys.