with one click
mcp
高德地图服务,提供地点搜索、路径规划、天气查询、地理编码等功能。支持IP定位、POI搜索、路线规划、坐标转换等常用地图服务。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
高德地图服务,提供地点搜索、路径规划、天气查询、地理编码等功能。支持IP定位、POI搜索、路线规划、坐标转换等常用地图服务。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Word文档处理:创建、编辑、读取.docx文件。用户提到"Word"、"文档"、".docx"、"报告"、"信函"时使用。
使用腾讯云 API 密钥调用腾讯云各种服务,包括翻译、CVM、COS等。
图片识别与图文理解,基于 PaddleOCR-VL 模型,支持识别图片中的文字、场景、物体等信息。支持109种语言,可输出JSON或Markdown格式。
You MUST use this for gathering contexts before any work. This is a Knowledge management for AI agents. Use `brv` to store and retrieve project patterns, decisions, and architectural rules in .brv/context-tree. Uses a configured LLM provider (default: ByteRover, no API key needed) for query and curate operations.
Typed knowledge graph for structured agent memory and composable skills. Use when creating/querying entities (Person, Project, Task, Event, Document), linking related objects, enforcing constraints, planning multi-step actions as graph transformations, or when skills need to share state. Trigger on "remember", "what do I know about", "link X to Y", "show dependencies", entity CRUD, or cross-skill data access.
Transform AI agents from task-followers into proactive partners that anticipate needs and continuously improve. Now with WAL Protocol, Working Buffer, Autonomous Crons, and battle-tested patterns. Part of the Hal Stack 🦞
| name | MCP 高德地图 |
| description | 高德地图服务,提供地点搜索、路径规划、天气查询、地理编码等功能。支持IP定位、POI搜索、路线规划、坐标转换等常用地图服务。 |
| triggers | ["地图","位置","导航","路线规划","POI","地理编码","高德"] |
| mcp | {"command":"uvx","args":["amap-mcp-server"],"env":{"AMAP_MAPS_API_KEY":"your_api_key"}} |
高德地图 MCP Server 提供全面的地图服务:
功能:根据IP地址获取地理位置
参数说明:
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
| ip | string | ❌ | IP地址,为空则使用请求方IP |
返回信息:
使用示例:
{
"ip": "114.247.50.2"
}
功能:搜索指定类型的兴趣点
参数:
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
| keywords | string | ✅ | 搜索关键词 |
| location | string | ❌ | 中心点坐标 |
| radius | integer | ❌ | 搜索半径(米) |
| types | string | ❌ | POI类型 |
| offset | integer | ❌ | 每页记录数 |
POI类型代码:
功能:将地址转换为经纬度坐标
参数:
address: 结构化地址返回:
功能:将坐标转换为地址信息
参数:
location: 经纬度坐标radius: 搜索半径(米)返回:
功能:规划驾车路线
参数:
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
| origin | string | ✅ | 起点坐标 |
| destination | string | ✅ | 终点坐标 |
| strategy | integer | ❌ | 路径策略 |
策略代码:
返回信息:
功能:规划步行路线
参数:
origin: 起点坐标destination: 终点坐标功能:规划公共交通路线
参数:
origin: 起点destination: 终点city: 城市名称{
"mcpServers": {
"amap": {
"command": "uvx",
"args": ["amap-mcp-server"],
"env": {
"AMAP_MAPS_API_KEY": "your_api_key_here"
}
}
}
}
export AMAP_MAPS_API_KEY=your_api_key
uvx amap-mcp-server --transport sse --port 8000
用户:帮我找附近的餐厅
助手:[调用 search_poi,类型=餐饮]
用户:从A到B怎么走?
助手:[调用 get_driving_route]
用户:这个地址的经纬度是多少?
助手:[调用 geocode]
用户:我现在在哪里?
助手:[调用 locate_ip]
经度,纬度
例如:116.397428,39.90923
# 指定搜索范围
search_poi(
keywords="餐厅",
location="116.397,39.909", # 中心点
radius=1000 # 1公里范围
)
# 按类型筛选
search_poi(
types="050000", # 餐饮服务
location="116.397,39.909"
)
日常通勤:躲避拥堵(strategy=4)
长途出行:速度优先(strategy=0)
省钱路线:费用优先(strategy=1)
⚠️ 重要提示:
| 服务类型 | 个人开发者 | 企业版 |
|---|---|---|
| POI搜索 | 5000次/天 | 50000次/天 |
| 路线规划 | 5000次/天 | 50000次/天 |
| 地理编码 | 5000次/天 | 50000次/天 |
amap(路线规划)→ 12306(火车票)→ 天气查询
amap(定位)→ 搜索周边 → 路线导航
A: 高德使用GCJ-02坐标系,与GPS原始坐标(WGS-84)有偏差
A: 尝试:
A: 完成企业认证或购买增值服务
更新时间: 2026-03-08 版本: 1.0