yanyige/zjcst-mcp-server
If you are the rightful owner of zjcst-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Zhejiang Anfang MCP Server provides a comprehensive suite of geolocation and mapping services, designed to facilitate various geographic and location-based tasks.
maps_regeocode
Reverse geocode coordinates to obtain administrative divisions and detailed addresses.
maps_geo
Convert structured addresses to coordinates, supporting landmark/building name resolution.
maps_ip_location
Locate user geographic position based on IP address.
maps_weather
Query city weather information by city name or adcode.
maps_distance
Calculate distance between two points, supporting driving, walking, and spherical distance.
浙江安防 MCP Server
功能概览
1. 地理信息工具
-
maps_regeocode 经纬度坐标逆地理编码,获取行政区划和详细地址。 参数:
location
-
maps_geo 结构化地址转经纬度,支持地标/建筑名解析。 参数:
address
,city
(可选)
2. 位置与气象服务
-
maps_ip_location 基于 IP 地址定位用户地理位置。 参数:
ip
-
maps_weather 按城市名称或adcode查询城市天气信息。 参数:
city
3. 路线规划工具
-
骑行/步行/驾车/公共交通路线 均支持通过经纬度或结构化地址进行路径规划,自动考虑地形、道路、交通等实际情况。 关键参数包括:
origin
,destination
,或origin_address
,destination_address
等,支持指定城市。 -
maps_distance 计算两点间距离,支持驾车、步行和球面距离。 参数:
origins
,destination
,type
(可选)
4. POI 搜索与详情
-
maps_text_search 关键词检索POI,支持限定城市范围。 参数:
keywords
,city
,citylimit
-
maps_around_search 指定坐标点及半径范围的POI搜索。 参数:
location
,radius
,keywords
-
maps_search_detail 获取指定POI ID的详细信息。 参数:
id
快速配置与部署
MCP Server 支持三种主流数据传输方式,满足不同场景下的集成需求:
1. stdio(默认本地模式)
{
"mcpServers": {
"amap-mcp-server": {
"command": "uvx",
"args": ["amap-mcp-server"],
"env": {
"AMAP_MAPS_API_KEY": "your amap maps api key"
}
}
}
}
2. SSE(实时事件推送,适合远程/分布式)
本地运行:
export AMAP_MAPS_API_KEY=你的有效API Key
uvx amap-mcp-server sse
客户端配置:
{
"mcpServers": {
"amap-mcp-server": {
"url": "http://0.0.0.0:8000/sse"
}
}
}
3. Streamable HTTP
本地运行:
export AMAP_MAPS_API_KEY=你的有效API Key
uvx amap-mcp-server streamable-http
客户端配置:
{
"mcpServers": {
"amap-mcp-server": {
"url": "http://localhost:8000/mcp"
}
}
}