Naver Search MCP Server
MCP server for Naver Search API and DataLab API integration, enabling comprehensive search across various Naver services and data trend analysis.
⚠️ Naver is migrating these APIs — read this before you set up
Naver is moving Search, Search Trend, and Shopping Insight from the Naver Developers Center to NAVER API HUB on NAVER Cloud Platform, and is shutting down three search APIs entirely.
| Date | What happens |
|---|---|
| 2026-07-31 | Developers Center stops accepting new key applications.<br>Shopping / Book / Academic search APIs shut down completely. |
| 2027-06-30 | Developers Center support ends — existing keys stop working. |
Source: Naver Developers Center official notice (Korean) — "Search API, Search Trend, Shopping Insight 서비스 종료 및 NAVER API HUB 이관 안내".
Setting this up for the first time? Get your keys from NAVER API HUB. The Developers Center path closes to new applicants on 2026-07-31, so it is no longer the place to start. Step-by-step instructions are in Option A: NAVER API HUB below.
Already running with Developers Center keys? Nothing to change. They keep working until 2027-06-30, and this version supports both platforms from the same install. When you're ready, get a HUB key and swap the two environment variables — no other changes.
Support plan for this server: both platforms stay supported side by side through Naver's 2027-06-30 cutoff. The Developers Center path will be dropped in a later major version only after that date, once it can no longer work for anyone — so upgrading in the meantime will never take your working setup away.
Three tools were removed in 1.0.49: search_shop, search_book, search_academic. Naver shuts those search APIs down on 2026-07-31 with no replacement on any platform, so there is nothing this server can do to keep them. Shopping Insight (datalab_shopping_*) and find_category are a different API and are not affected.
Available on ClawHub for OpenClaw
You can install this MCP server as an OpenClaw skill from ClawHub:
openclaw skills install naver-search-mcpThe ClawHub skill uses the published npm package internally and needs one credential pair in your OpenClaw environment — either the NAVER API HUB pair (NCP_APIGW_API_KEY_ID / NCP_APIGW_API_KEY) or the Developers Center pair (NAVER_CLIENT_ID / NAVER_CLIENT_SECRET). OpenClaw's apiKey field maps to NAVER_CLIENT_SECRET; HUB users should set both HUB variables explicitly in the environment instead of using apiKey.
Quick Start: Use Without API Key
You can use this server immediately without API keys through Kakao PlayMCP. Simply visit the link and start using it right away!
Tool Details
Available tools:
🆕 Category Search
- find_category: Category search tool so you no longer need to manually check category numbers in URLs for trend and shopping insight searches. Just describe the category in natural language.
Search Tools
- search_webkr: Search Naver web documents
- search_news: Search Naver news
- search_blog: Search Naver blogs
- search_cafearticle: Search Naver cafe articles
- search_image: Search Naver images
- search_kin: Search Naver KnowledgeiN
- search_encyc: Search Naver encyclopedia
- search_local: Search Naver local places
Removed in 1.0.49:
search_shop,search_book,search_academic. Naver shuts down the Shopping / Book / Academic search APIs on 2026-07-31 with no replacement on any platform. This is not a limitation of this server. Shopping Insight (datalab_shopping_*) is a different API and is unaffected.
DataLab Tools
- datalab_search: Analyze search term trends
- datalab_shopping_category: Analyze shopping category trends
- datalab_shopping_by_device: Analyze shopping trends by device
- datalab_shopping_by_gender: Analyze shopping trends by gender
- datalab_shopping_by_age: Analyze shopping trends by age group
- datalab_shopping_keywords: Analyze shopping keyword trends
- datalab_shopping_keyword_by_device: Analyze shopping keyword trends by device
- datalab_shopping_keyword_by_gender: Analyze shopping keyword trends by gender
- datalab_shopping_keyword_by_age: Analyze shopping keyword trends by age group
Getting API Keys
Two platforms issue keys for this server. Set one pair of environment variables — see Configuration below for how the pair you set determines the platform used.
Option A: NAVER API HUB (recommended — the forward path)
- Go to the NAVER Cloud Platform console and sign up or log in.
- Click the region & platform selector in the top right of the console, choose your region/platform, and click Apply.
- Open Menu > All Services > Application Services > NAVER API HUB.
- Click Application, select (or create) your application, then under API management click 인증 정보 (Authentication Info).
- Copy the Client ID and Client Secret shown in the popup.
- Use these as
NCP_APIGW_API_KEY_ID(Client ID) andNCP_APIGW_API_KEY(Client Secret) in the configuration below.
Option B: Naver Developers (legacy — existing keys only)
Naver Developers Center stops accepting new applications on 2026-07-31. If you don't already have a Client ID/Secret from this platform, use NAVER API HUB above instead. Existing Developers Center keys keep working until 2027-06-30.
- Visit Naver Developers and log in with your Naver account
- Click the "Application Registration" (애플리케이션 등록) button
- Fill in the application information:
- Application Name: Enter any name (e.g., "Naver Search MCP")
- Usage: Select "Search" (검색)
- In the API Settings section, check ALL of the following APIs:
- Search (검색) - Required for blog, news, cafe article, web, image, kin, encyclopedia, and local search
- DataLab - Search Trends (데이터랩 - 검색어 트렌드) - Required for search term trend analysis
- DataLab - Shopping Insight (데이터랩 - 쇼핑인사이트) - Required for shopping trend analysis
- Click "Register" to complete registration
- After registration, you'll see your Client ID and Client Secret on the application detail page
- Use these as
NAVER_CLIENT_ID/NAVER_CLIENT_SECRETin the configuration below
Configuration
Credentials
Two platforms are supported. Set one pair — the server picks the platform from which variables you set, since the key strings themselves are indistinguishable.
| Variables | Platform | Endpoint |
|---|---|---|
NCP_APIGW_API_KEY_ID, NCP_APIGW_API_KEY | NAVER API HUB (NCP) | naverapihub.apigw.ntruss.com |
NAVER_CLIENT_ID, NAVER_CLIENT_SECRET | Naver Developers (legacy) | openapi.naver.com |
If both pairs are set, NAVER API HUB wins.
The installation examples below use the legacy NAVER_CLIENT_ID / NAVER_CLIENT_SECRET
pair; swap in the HUB pair from the table above if that's what you have.
Migration to NAVER API HUB
Naver is moving these APIs from the Developers Center to NAVER API HUB on NAVER Cloud Platform.
| Date | What happens |
|---|---|
| 2026-06-25 | NAVER API HUB launched |
| 2026-07-31 | Developers Center stops accepting new applications |
| 2027-06-30 | Developers Center support ends — existing keys stop working |
Existing keys keep working until 2027-06-30. To migrate, get a key from the
NAVER Cloud Platform console and set NCP_APIGW_API_KEY_ID / NCP_APIGW_API_KEY.
Developers Center keys cannot be used against NAVER API HUB.
Installation
Method 1: NPX Installation (Recommended)
The most reliable way to use this MCP server is through NPX. For detailed package information, see the NPM package page.
Claude Desktop Configuration
Add to Claude Desktop config file (%APPDATA%\Claude\claude_desktop_config.json on Windows, ~/Library/Application Support/Claude/claude_desktop_config.json on macOS/Linux):
{
"mcpServers": {
"naver-search": {
"command": "npx",
"args": ["-y", "@isnow890/naver-search-mcp"],
"env": {
"NAVER_CLIENT_ID": "your_client_id",
"NAVER_CLIENT_SECRET": "your_client_secret"
}
}
}
}Claude Code Configuration
Add to your Claude Code settings:
{
"mcpServers": {
"naver-search": {
"command": "npx",
"args": ["-y", "@isnow890/naver-search-mcp"],
"env": {
"NAVER_CLIENT_ID": "your_client_id",
"NAVER_CLIENT_SECRET": "your_client_secret"
}
}
}
}Method 2: ClawHub Installation for OpenClaw
This MCP server can also be used from OpenClaw through the ClawHub skill wrapper. Install it with:
openclaw skills install naver-search-mcpThe ClawHub skill uses the same published npm package internally:
npx -y @isnow890/naver-search-mcpMake sure one credential pair is configured in your OpenClaw environment before using the skill — the NAVER API HUB pair (NCP_APIGW_API_KEY_ID / NCP_APIGW_API_KEY) or the Developers Center pair (NAVER_CLIENT_ID / NAVER_CLIENT_SECRET). OpenClaw's apiKey field maps to NAVER_CLIENT_SECRET; HUB users should set both HUB variables explicitly instead.
Method 3: Local Installation
For local development or custom modifications:
Step 1: Download and Build Source Code
Clone with Git
git clone https://github.com/isnow890/naver-search-mcp.git
cd naver-search-mcp
npm install
npm run buildOr Download ZIP File
- Download the latest version from GitHub Releases
- Extract the ZIP file to your desired location
- Navigate to the extracted folder in terminal:
cd /path/to/naver-search-mcp
npm install
npm run build⚠️ Important: You must run npm run build after installation to generate the dist folder that contains the compiled JavaScript files.
Step 2: Claude Desktop Configuration
After building, you'll need the following information:
- NAVER_CLIENT_ID: Client ID from Naver Developers
- NAVER_CLIENT_SECRET: Client Secret from Naver Developers
- Installation Path: Absolute path to the downloaded folder
Windows Configuration
Add to Claude Desktop config file (%APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"naver-search": {
"type": "stdio",
"command": "cmd",
"args": [
"/c",
"node",
"C:\\path\\to\\naver-search-mcp\\dist\\src\\index.js"
],
"cwd": "C:\\path\\to\\naver-search-mcp",
"env": {
"NAVER_CLIENT_ID": "your-naver-client-id",
"NAVER_CLIENT_SECRET": "your-naver-client-secret"
}
}
}
}macOS/Linux Configuration
Add to Claude Desktop config file (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"naver-search": {
"type": "stdio",
"command": "node",
"args": ["/path/to/naver-search-mcp/dist/src/index.js"],
"cwd": "/path/to/naver-search-mcp",
"env": {
"NAVER_CLIENT_ID": "your-naver-client-id",
"NAVER_CLIENT_SECRET": "your-naver-client-secret"
}
}
}
}Path Configuration Important Notes
⚠
…