Amap MCP Server

Amap MCP Server

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.

Category
Visit Server

README

高德地图 MCP Server · Amap MCP Server

English | 中文


<a name="english"></a>

🇬🇧 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
amap_geocode Address ↔ Coordinates (forward & reverse)
amap_direction_driving 🚗 Driving directions with multi-strategy (fastest/cheapest/shortest/avoid-congestion)
amap_direction_transit 🚌 Public transit directions (bus + subway) with cost & transfer info
amap_direction_walking 🚶 Walking directions
amap_direction_bicycling 🚲 Cycling directions
amap_poi_search 🔍 POI search by keyword (restaurants, hotels, gas stations, etc.)
amap_poi_around 📍 Nearby search within a radius
amap_distance 📏 Batch distance/time measurement (up to 10 origins)
amap_ip_location 🏠 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 install

Configuration

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)


<a name="chinese"></a>

🇨🇳 中文

一个 MCP (Model Context Protocol) 服务器,封装了高德地图 Web 服务 API,为 Claude Code 等 AI 助手提供 9 个地图工具:地理编码、四种路径规划(驾车/公交/步行/骑行)、POI 搜索、周边搜索、距离测量、IP 定位。

为什么做这个: 截至 2026 年 6 月,Smithery 等 MCP 市场上没有任何高德/百度地图的 MCP Server。Google Maps MCP 有,但国内路线覆盖差。这个项目填补了空白。

功能

工具 说明
amap_geocode 地址 ↔ 经纬度互转(正向 + 逆地理编码)
amap_direction_driving 🚗 驾车路径规划,支持多策略(最快/最省钱/最短/躲避拥堵)
amap_direction_transit 🚌 公交地铁规划,含票价、换乘次数、步行段
amap_direction_walking 🚶 步行导航
amap_direction_bicycling 🚲 骑行导航
amap_poi_search 🔍 关键词搜索地点(餐厅、酒店、加油站等)
amap_poi_around 📍 周边搜索(指定半径)
amap_distance 📏 批量测距(最多 10 个起点同时比较)
amap_ip_location 🏠 IP 粗略定位(城市级)

前置条件

安装

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)

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured