Summary
- 高德地图 API(通过 MCP)。地理编码(地址↔坐标)、IP 定位、天气、POI 搜索、路线规划(骑行/步行/驾车/公交)、距离测量。Triggers: '高德', 'amap', '地理编码', 'geocoding', '经纬度', 'POI', '路线规划', '导航'.
- NOT for: 高德 JSAPI…
zkl2333/skills · Archived
高德地图 API(通过 MCP)。地理编码(地址↔坐标)、IP 定位、天气、POI 搜索、路线规划(骑行/步行/驾车/?
npx skills add zkl2333/skills --skill amap-maps
This repository is archived — consider an actively maintained alternative.
Get weather data via Caiyun (彩云天气) API through MCP.
32 installsSearch the web via the Zhipu CodePlan MCP web-search-prime server. Use when you need fast web d…
4 installsGenerate conventional commit messages following git-cz style by default (emoji between type and…
3 installsRead and extract readable content from a URL via the Zhipu CodePlan MCP web-reader server. Use …
2 installsRelated neighbors and high-traction skills in the same topics — useful to compare before installing.
OmniStudio Data Mapper (formerly DataRaptor) creation and validation with 100-point scoring. Us…
4.6K installsOmniStudio Data Mapper (formerly DataRaptor) creation and validation with 100-point scoring. Us…
2.5K installsUse this skill when the user asks to parse the content of an unstructured file (PDF, PPTX, DOCX…
1.2K installsOmniStudio Data Mapper (formerly DataRaptor) creation and validation with 100-point scoring. Us…
984 installs高德地图综合服务,支持POI搜索、路径规划、旅游规划、周边搜索和热力图数据可视化
633 installs通过脚本直连高德 Web Service API 完成地理编码、逆地理编码、IP 定位、天气、路径规划、距离测量和 …
551 installsOther skills from zkl2333/skills.
npx skills add zkl2333/skills
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
main
Files included with this skill beyond the listing page.
SKILL.md
2,550 B
SUMMARY.md
353 B
通过 MCP server (amap-maps) 调用高德 Web Service API。
mcporter.json 里加入 server 配置(合并到 mcpServers 下即可):``json "amap-maps": { "command": "npx", "args": ["-y", "@amap/amap-maps-mcp-server"], "env": { "AMAPMAPSAPIKEY": "YOURAMAPAPIKEY" } } ``
AMAPMAPSAPI_KEY)所有工具通过 mcporter call amap-maps.<tool> 调用。
# 地址 → 坐标
mcporter call amap-maps.maps_geo address="杭州市萧山区"
# 坐标 → 地址(逆地理编码)
mcporter call amap-maps.maps_regeocode location="120.26,30.27"
mcporter call amap-maps.maps_ip_location ip="114.247.50.2"
mcporter call amap-maps.maps_weather city="杭州"
# 关键词搜索
mcporter call amap-maps.maps_search_text keywords="咖啡" city="杭州"
# 周边搜索
mcporter call amap-maps.maps_search_around keywords="餐厅" location="120.26,30.27"
# POI 详情
mcporter call amap-maps.maps_search_detail id="B0FFH3V5BN"
# 驾车
mcporter call amap-maps.maps_direction_driving origin="120.26,30.27" destination="121.47,31.23"
# 步行
mcporter call amap-maps.maps_direction_walking origin="120.26,30.27" destination="120.28,30.29"
# 骑行
mcporter call amap-maps.maps_bicycling origin="120.26,30.27" destination="120.28,30.29"
# 公交(跨城需传 city/cityd)
mcporter call amap-maps.maps_direction_transit_integrated origin="120.26,30.27" destination="121.47,31.23" city="杭州" cityd="上海"
mcporter call amap-maps.maps_distance origins="120.26,30.27" destination="121.47,31.23"
高德使用 GCJ-02 坐标系,格式为 经度,纬度(注意:经度在前)。
maps_geo 把地址转成经纬度caiyun-weather skill 使用:先用高德 geocoding 获取坐标,再传给彩云天气