Amap MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Amap MCP ServerWhat's the fastest driving route from 武汉天地 to 天河机场?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
高德地图 MCP Server · Amap MCP Server
🇬🇧 English
A Model Context Protocol (MCP) server that wraps the Amap (高德地图) Web Service APIs, giving AI assistants like Claude Code 9 map tools: geocoding, route planning (driving/transit/walking/cycling), POI search, nearby search, distance measurement, and IP location.
Why this exists: There was no publicly available Amap/Baidu Maps MCP Server on Smithery or anywhere else (as of 2026-06). Google Maps MCP exists but its China coverage is poor. This fills that gap.
Features
Tool | Description |
| Address ↔ Coordinates (forward & reverse) |
| 🚗 Driving directions with multi-strategy (fastest/cheapest/shortest/avoid-congestion) |
| 🚌 Public transit directions (bus + subway) with cost & transfer info |
| 🚶 Walking directions |
| 🚲 Cycling directions |
| 🔍 POI search by keyword (restaurants, hotels, gas stations, etc.) |
| 📍 Nearby search within a radius |
| 📏 Batch distance/time measurement (up to 10 origins) |
| 🏠 IP-based coarse location (city level) |
Prerequisites
Node.js ≥ 18
Amap API Key (Web Service type, NOT Web JS API)
Free tier: 5,000 calls/day per endpoint
Installation
git clone https://github.com/zengzeruidd-a11y/amap-mcp-server.git
cd amap-mcp-server
npm installConfiguration
Add to your Claude Code .mcp.json (global: ~/.claude/.mcp.json or project: .mcp.json):
{
"amap": {
"command": "node",
"args": ["/path/to/amap-mcp-server/server.js"],
"env": {
"AMAP_KEY": "your-amap-api-key-here"
}
}
}Restart Claude Code. The 9 tools will appear automatically.
For other MCP-compatible clients (Cursor, Windsurf, etc.), configure via their respective MCP settings.
Usage Examples
Once configured, ask Claude:
"What's the fastest driving route from 武汉天地 to 天河机场 on Saturday morning?"
"Find hotpot restaurants within 2km of 光谷广场, sorted by rating"
"How do I get from 汉口站 to 武昌站 by subway?"
"Compare distances from my home, office, and the train station to 天河机场"
API Reference
All tools use the Amap Web Service API v3/v4. See Amap API Docs for details.
Strategy | Driving | Transit |
0 | Speed first | Fastest |
1 | Cost first | Cheapest |
2 | Distance first | Fewest transfers |
3 | Avoid congestion | Least walking |
4 | Avoid congestion + Speed first | — |
5 | Multi-strategy compare | No subway |
License
MIT © 2026 曾泽瑞 (Zeng Zerui)
Related MCP server: GIS Data Conversion MCP
🇨🇳 中文
一个 MCP (Model Context Protocol) 服务器,封装了高德地图 Web 服务 API,为 Claude Code 等 AI 助手提供 9 个地图工具:地理编码、四种路径规划(驾车/公交/步行/骑行)、POI 搜索、周边搜索、距离测量、IP 定位。
为什么做这个: 截至 2026 年 6 月,Smithery 等 MCP 市场上没有任何高德/百度地图的 MCP Server。Google Maps MCP 有,但国内路线覆盖差。这个项目填补了空白。
功能
工具 | 说明 |
| 地址 ↔ 经纬度互转(正向 + 逆地理编码) |
| 🚗 驾车路径规划,支持多策略(最快/最省钱/最短/躲避拥堵) |
| 🚌 公交地铁规划,含票价、换乘次数、步行段 |
| 🚶 步行导航 |
| 🚲 骑行导航 |
| 🔍 关键词搜索地点(餐厅、酒店、加油站等) |
| 📍 周边搜索(指定半径) |
| 📏 批量测距(最多 10 个起点同时比较) |
| 🏠 IP 粗略定位(城市级) |
前置条件
Node.js ≥ 18
高德开放平台 API Key(选 Web 服务 类型,不是 Web 端 JS API)
免费额度:每个接口 5,000 次/天
安装
git clone https://github.com/zengzeruidd-a11y/amap-mcp-server.git
cd amap-mcp-server
npm install配置
在 Claude Code 的 .mcp.json 中添加(全局:~/.claude/.mcp.json 或项目级:.mcp.json):
{
"amap": {
"command": "node",
"args": ["/path/to/amap-mcp-server/server.js"],
"env": {
"AMAP_KEY": "你的高德API密钥"
}
}
}重启 Claude Code,9 个工具自动加载。
其他 MCP 兼容客户端(Cursor、Windsurf 等)请参考各自的 MCP 配置方式。
使用示例
配置好后,直接问 Claude:
"从武汉天地开车到天河机场,周六上午出发,哪条路线最快?"
"光谷广场周边 2 公里内有没有评分高的火锅店?"
"从汉口站到武昌站怎么坐地铁最快?"
"帮我算一下从家、公司和火车站分别到天河机场的距离和时间"
驾车策略
策略 | 含义 |
0 | 速度优先(最快) |
1 | 费用优先(不走高速) |
2 | 距离优先 |
3 | 躲避拥堵(不走快速路) |
4 | 躲避拥堵 + 速度优先 |
5 | 多策略对比 |
公交策略
策略 | 含义 |
0 | 最快捷 |
1 | 最经济 |
2 | 最少换乘 |
3 | 最少步行 |
5 | 不乘地铁 |
已知限制
坐标格式:
lng,lat(经度在前)—— 高德特有,非国际惯例实时路况需要企业版权限,当前使用静态时间估算
公交跨城规划有限支持
海外地址覆盖有限,主要覆盖中国大陆
License
MIT © 2026 曾泽瑞 (Zeng Zerui)
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.
Latest Blog Posts
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/zengzeruidd-a11y/amap-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server