네이버 길찾기 MCP 서버
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| NAVER_CLIENT_ID | Yes | 네이버 클라우드 플랫폼 Client ID | |
| NAVER_CLIENT_SECRET | Yes | 네이버 클라우드 플랫폼 Client Secret |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| naver_directionsC | 네이버 지도 API를 사용하여 두 지점 간의 길찾기 정보를 제공합니다. |
| naver_geocodeC | 주소를 위도/경도 좌표로 변환합니다. |
| naver_reverse_geocodeC | 위도/경도 좌표를 주소로 변환합니다. |
| naver_search_placesC | 네이버 지도에서 장소를 검색합니다. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: directions for routing, geocode for address-to-coordinates, reverse_geocode for coordinates-to-address, and search_places for location search. There is no overlap in functionality, making tool selection straightforward.
All tools follow a consistent 'naver_' prefix and snake_case naming pattern (e.g., naver_directions, naver_geocode). This uniformity enhances readability and predictability across the toolset.
With 4 tools, the server is well-scoped for a navigation and mapping domain. Each tool serves a core function (routing, geocoding, reverse geocoding, place search), and there are no redundant or missing tools for this purpose.
The toolset provides complete coverage for basic navigation workflows: converting addresses to coordinates, coordinates to addresses, finding places, and getting directions. There are no obvious gaps, as these tools support end-to-end routing tasks.