Skip to main content
Glama
bhuvnsh

io.github.bhuvnsh/mcp-mapmyindia

by bhuvnsh

mcp-mapmyindia

Mappls / MapMyIndia API용 MCP 서버

CI npm version License: MIT

MCP (Model Context Protocol) 서버는 Mappls / MapMyIndia API를 Claude와 같은 AI 어시스턴트를 위한 도구로 노출합니다. 지오코딩, 역지오코딩, 장소 검색, 주변 검색, 경로 탐색, 거리 계산을 지원하며, 모두 인도의 지도 데이터에 특화되어 있습니다.


도구

도구

설명

geocode

주소나 장소 이름을 좌표로 변환합니다

reverse_geocode

좌표(위도/경도)를 사람이 읽을 수 있는 주소로 변환합니다

places_search

쿼리 문자열로 장소를 자동 완성 및 검색합니다

nearby

기준 위치 주변에서 키워드로 근처 장소를 찾습니다

directions

두 지점 사이의 경로 안내를 제공합니다(경유지 지원)

distance_matrix

여러 출발지와 목적지 간 이동 거리와 시간을 계산합니다

place_detail

eLoc(Mappls 장소 ID)을 사용하여 장소의 상세 정보를 가져옵니다


Related MCP server: NextBillion.ai MCP Server

설정

API 자격 증명 얻기

https://apis.mappls.com에 등록하여 다음 중 하나를 받으세요:

  • API 키(더 간단하며, 개인/테스트 용도)

  • OAuth 클라이언트 자격 증명(프로덕션에 권장)

인증

환경 변수에 다음 중 하나를 설정하세요:

옵션 A — OAuth(클라이언트 자격 증명): 권장

export MAPPLS_CLIENT_ID=your_client_id
export MAPPLS_CLIENT_SECRET=your_client_secret

옵션 B — API 키:

export MAPPLS_API_KEY=your_api_key_here

Claude Desktop에서 사용

claude_desktop_config.json에 추가하세요:

{
  "mcpServers": {
    "mapmyindia": {
      "command": "npx",
      "args": ["-y", "@bhuvsh/mcp-mapmyindia"],
      "env": {
        "MAPPLS_CLIENT_ID": "your_client_id",
        "MAPPLS_CLIENT_SECRET": "your_client_secret"
      }
    }
  }
}

또는 API 키 사용 시:

{
  "mcpServers": {
    "mapmyindia": {
      "command": "npx",
      "args": ["-y", "@bhuvnsh/mcp-mapmyindia"],
      "env": {
        "MAPPLS_API_KEY": "your_api_key_here"
      }
    }
  }
}

구성 파일 위치:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json


개발

# Clone and install
git clone https://github.com/bhuvnsh/mcp-mappls.git
cd mcp-mappls
npm install

# Build
npm run build

# Run tests
npm test

# Watch mode (dev)
npm run dev

요구 사항

  • Node.js >= 18

  • Mappls API 키 또는 OAuth 클라이언트 자격 증명


기여

기여를 환영합니다. 변경하고 싶은 내용이 있으면 먼저 이슈를 열어 논의해 주세요. 풀 리퀘스트에는 테스트가 포함되어야 합니다.


라이선스

MIT

A
license - permissive license
Not graded
quality - not tested
Not graded
maintenance - not tested

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Geospatial intelligence with Mapbox APIs like geocoding, POI search, directions, isochrones, etc.

  • Geoapify MCP — wraps the Geoapify Location Platform (geoapify.com)

  • HERE MCP — premium geocoding, places, and TRAFFIC-AWARE routing from HERE

View all MCP Connectors

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/bhuvnsh/mcp-mapmyindia'

If you have feedback or need assistance with the MCP directory API, please join our Discord server