MCP ExplorerExplorer

Amap

@amapon a day ago
0 MIT
HostedFreeOfficial
Web Services
#amap#map
Amap Maps is a server that supports any MCP protocol client, allowing users to easily utilize the Amap Maps MCP server for various location-based services.

Overview

What is Amap

The AMap MCP Server is a server designed to facilitate the integration and use of the AMap Maps API, allowing developers to access various mapping functionalities and services provided by AMap.

Use cases

Common use cases for the AMap MCP Server include developing location-based applications, integrating maps into websites, creating route planning tools, and enhancing user experience with real-time location data in mobile and web applications.

How to use

To use the AMap MCP Server, developers need to obtain an AMap Maps API key, then configure the server using NPX by specifying the command and arguments in a JSON format. The API key must be set in the environment variables for the server to function correctly.

Key features

Key features of the AMap MCP Server include easy setup with NPX, seamless integration with the AMap Maps API, support for various mapping functionalities such as geocoding, routing, and real-time location tracking, and the ability to customize map displays to fit application needs.

Where to use

The AMap MCP Server can be used in web applications, mobile applications, and any other software that requires mapping capabilities. It is particularly useful in industries like transportation, logistics, tourism, and real estate, where location services play a crucial role.

Content

AMap Map MCP Server

MCP Server for the AMap Map API.

Setup

API Key

Get a AMap Maps API key:
https://lbs.amap.com/api/webservice/create-project-and-key.

Local

{
  "mcpServers": {
    "amap-maps": {
      "command": "npx",
      "args": [
        "-y",
        "@amap/amap-maps-mcp-server"
      ],
      "env": {
        "AMAP_MAPS_API_KEY": "<YOUR_API_KEY>"
      }
    }
  }
}

Remote

{
  "mcpServers": {
    "amap-maps": {
      "type": "streamable-http",
      "url": "https://router.mcpso.cc/mcp/amap"
    }
  }
}

Tools

maps_regeocode
将经纬度坐标转换为商圈区域信息
maps_geo
将地址转换为经纬度坐标
maps_ip_location
根据用户输入的 IP 地址确定 IP 的位置
maps_weather
根据城市名称或 adcode 查询指定城市的天气
maps_search_detail
根据关键词搜索或周边搜索获取的POI ID的详细信息
maps_bicycling
根据起点和终点的经纬度坐标规划自行车路线,规划时会考虑交通、单行线、封闭路段等情况,最多支持500公里的自行车路线规划
maps_direction_walking
根据起点和终点的经纬度坐标规划步行路线,最多支持100公里的步行路线规划
maps_direction_driving
根据起点和终点的经纬度坐标规划汽车路线,最多支持500公里的汽车路线规划
maps_direction_transit_integrated
根据起点和终点的经纬度坐标规划公共交通路线,最多支持500公里的公共交通路线规划
maps_distance
根据两个经纬度坐标计算距离,支持公交、步行、地铁距离计算
maps_text_search
关键词搜索,根据用户输入的关键词搜索相关的POI
maps_around_search
周边搜索,根据用户输入的关键词和中心点经纬度坐标搜索周围的POI

Comments