Mcp Naver Maps

by yunkee-lee

307 downloads
Not rated
GitHub

About

The MCP connects to the Naver Maps API (https://www.ncloud.com/product/applicationService/maps).

Details

Author
yunkee-lee
Downloads
307
Categories
Media

- Connects to the Naver Maps API
- Supports Geocoding API
- Supports Directions 5 API
- Uses environment variables for credentials
- Requires Python 3.13+ and uv

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Mcp Naver Maps
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install Python 3.13+, uv, and obtain Naver Cloud Platform API credentials. Create a .env file with NAVER_MAPS_CLIENT_ID and NAVER_MAPS_CLIENT_SECRET, then run uv sync and uv run src/mcp_naver_maps.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "mcp naver maps": {
            "mcp-naver-maps": {
                "command": "uv",
                "args": [
                    "run",
                    "src/mcp_naver_maps"
                ],
                "env": {
                    "NAVER_MAPS_CLIENT_ID": "YOUR_CLIENT_ID_HERE",
                    "NAVER_MAPS_CLIENT_SECRET": "YOUR_CLIENT_SECRET_HERE"
                }
            }
        }
    }
}

McpServers

{
    "mcp-naver-maps": {
        "command": "uv",
        "args": [
            "run",
            "src/mcp_naver_maps"
        ],
        "env": {
            "NAVER_MAPS_CLIENT_ID": "YOUR_CLIENT_ID_HERE",
            "NAVER_MAPS_CLIENT_SECRET": "YOUR_CLIENT_SECRET_HERE"
        }
    }
}

MCP Naver Maps

The MCP connects to the Naver Maps API.

It currently supports the following APIs:
Geocoding
Directions 5

Prerequisites

Before you begin, ensure you have the following installed:

Python: Version 3.13 or higher
uv: You can find installation instructions here.

  • Naver Cloud Platform Account: You need API credentials (Client ID and Client Secret) for the Naver Maps service. You can obtain these from the Naver Cloud Platform console.


Configuration

1. Create a .env file: Create a file in the project root.

2. Add API Credentials: Edit the .env file and add your Naver Maps API credentials.
``.env
NAVER_MAPS_CLIENT_ID="YOUR_NAVER_MAPS_CLIENT_ID"
NAVER_MAPS_CLIENT_SECRET="YOUR_NAVER_MAPS_CLIENT_SECRET"

    Please verify the exact environment variable names required by checking src/mcp_naver_maps/naver_maps_client.py.

Running the MCP

1. Sync Dependencies: Navigate to the project root directory in your terminal and run the following command. This will create a virtual environment (if one doesn't exist) and install all dependencies specified in pyproject.toml.

bash
uv sync

2. Run:: You can run the MCP server using
uv.
bash
uv run src/mcp_naver_maps

For development,
bash
source .venv/bin/activate
mcp dev src/mcp_naver_maps/server.py
``

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.