Naver Search MCP
Use this skill for Korean search tasks that are better served by Naver than general web search: news, blogs, cafe posts, images, Knowledge iN, encyclopedia, local places, and DataLab trend analysis (search trends and shopping insight).
한국 웹 검색, 네이버 뉴스/블로그/카페/이미지/지식iN/백과사전/지역 검색, 네이버 DataLab 검색어 트렌드와 쇼핑인사이트 분석에 사용합니다.
github: https://github.com/isnow890/naver-search-mcp
This skill wraps the published MCP server:
npx -y @isnow890/naver-search-mcp
Setup
- Install from ClawHub with
openclaw skills install naver-search-mcp.
- Supply one credential pair — never a partial mix of the two:
- NAVER API HUB (forward path, recommended):
NCP_APIGW_API_KEY_ID and NCP_APIGW_API_KEY.
- Naver Developers (legacy, existing keys only):
NAVER_CLIENT_ID and NAVER_CLIENT_SECRET. Developers Center stops accepting new applications on 2026-07-31; existing keys keep working until 2027-06-30.
- In OpenClaw,
apiKey maps to NAVER_CLIENT_SECRET because this skill declares primaryEnv: NAVER_CLIENT_SECRET (kept for backward compatibility with existing legacy installs). HUB users should set both NCP_APIGW_API_KEY_ID and NCP_APIGW_API_KEY as explicit environment variables instead of using apiKey, since apiKey only ever maps to the legacy secret.
- Provide the other variable in the pair through the skill
env config or OpenClaw environment (legacy users: NAVER_CLIENT_ID).
- Restart OpenClaw or the Gateway after changing credentials.
- Do not ask users to clone this repository for normal use; cloning is only for development.
Example OpenClaw config (Naver Developers, legacy, using apiKey):
{
"skills": {
"entries": {
"naver-search-mcp": {
"enabled": true,
"apiKey": "your_naver_client_secret",
"env": {
"NAVER_CLIENT_ID": "your_naver_client_id"
}
}
}
}
}
Example OpenClaw config (NAVER API HUB — set both variables explicitly, do not use apiKey):
{
"skills": {
"entries": {
"naver-search-mcp": {
"enabled": true,
"env": {
"NCP_APIGW_API_KEY_ID": "your_ncp_apigw_api_key_id",
"NCP_APIGW_API_KEY": "your_ncp_apigw_api_key"
}
}
}
}
}
Search Guidance
- Prefer this skill when the user wants Korean-source results, Naver-specific results, Korean shopping insight data, or Korean local data.
- Choose the tool that matches intent: news, blog reviews, cafe discussions, images, local places, encyclopedia lookup, or general Korean web search.
search_shop, search_book, and search_academic were removed in 1.0.49 ahead of Naver's 2026-07-31 shutdown of those search APIs — do not call them. For shopping data, use DataLab Shopping Insight (datalab_shopping_* plus find_category) instead; it is a separate API and is unaffected.
- Summarize results instead of dumping raw API output. Include source, date, link, price, location, or category details when useful.
DataLab Guidance
- Use
datalab_search for keyword trend comparisons.
- For shopping insight requests, call
find_category first when the user gives a natural-language category such as 화장품, 노트북, or 여성의류.
find_category is the main advantage of this MCP: users should not have to inspect Naver Shopping or DataLab URLs manually to find category codes.
- After selecting a category code, use the matching shopping trend tool for overall, device, gender, age, or keyword analysis.
- Ask the user only when multiple category candidates are genuinely ambiguous.
- For relative dates like today, recent, or current, use
"today" when supported or state the assumed date range clearly.
1---2name: naver-search-mcp3description: Use for Korean web search, Naver News, Blog, Cafe, Image, Knowledge iN, Encyclopedia, Local search, and Naver DataLab search-trend and shopping-insight analysis through the published npm MCP server.4---56# Naver Search MCP78Use this skill for Korean search tasks that are better served by Naver than general web search: news, blogs, cafe posts, images, Knowledge iN, encyclopedia, local places, and DataLab trend analysis (search trends and shopping insight).910한국 웹 검색, 네이버 뉴스/블로그/카페/이미지/지식iN/백과사전/지역 검색, 네이버 DataLab 검색어 트렌드와 쇼핑인사이트 분석에 사용합니다.1112github: https://github.com/isnow890/naver-search-mcp1314This skill wraps the published MCP server:1516```bash17npx -y @isnow890/naver-search-mcp18```1920## Setup2122- Install from ClawHub with `openclaw skills install naver-search-mcp`.23- Supply **one** credential pair — never a partial mix of the two:24 - **NAVER API HUB** (forward path, recommended): `NCP_APIGW_API_KEY_ID` and `NCP_APIGW_API_KEY`.25 - **Naver Developers** (legacy, existing keys only): `NAVER_CLIENT_ID` and `NAVER_CLIENT_SECRET`. Developers Center stops accepting new applications on 2026-07-31; existing keys keep working until 2027-06-30.26- In OpenClaw, `apiKey` maps to `NAVER_CLIENT_SECRET` because this skill declares `primaryEnv: NAVER_CLIENT_SECRET` (kept for backward compatibility with existing legacy installs). HUB users should set both `NCP_APIGW_API_KEY_ID` and `NCP_APIGW_API_KEY` as explicit environment variables instead of using `apiKey`, since `apiKey` only ever maps to the legacy secret.27- Provide the other variable in the pair through the skill `env` config or OpenClaw environment (legacy users: `NAVER_CLIENT_ID`).28- Restart OpenClaw or the Gateway after changing credentials.29- Do not ask users to clone this repository for normal use; cloning is only for development.3031Example OpenClaw config (Naver Developers, legacy, using `apiKey`):3233```json34{35 "skills": {36 "entries": {37 "naver-search-mcp": {38 "enabled": true,39 "apiKey": "your_naver_client_secret",40 "env": {41 "NAVER_CLIENT_ID": "your_naver_client_id"42 }43 }44 }45 }46}47```4849Example OpenClaw config (NAVER API HUB — set both variables explicitly, do not use `apiKey`):5051```json52{53 "skills": {54 "entries": {55 "naver-search-mcp": {56 "enabled": true,57 "env": {58 "NCP_APIGW_API_KEY_ID": "your_ncp_apigw_api_key_id",59 "NCP_APIGW_API_KEY": "your_ncp_apigw_api_key"60 }61 }62 }63 }64}65```6667## Search Guidance6869- Prefer this skill when the user wants Korean-source results, Naver-specific results, Korean shopping insight data, or Korean local data.70- Choose the tool that matches intent: news, blog reviews, cafe discussions, images, local places, encyclopedia lookup, or general Korean web search.71- `search_shop`, `search_book`, and `search_academic` were removed in 1.0.49 ahead of Naver's 2026-07-31 shutdown of those search APIs — do not call them. For shopping data, use DataLab Shopping Insight (`datalab_shopping_*` plus `find_category`) instead; it is a separate API and is unaffected.72- Summarize results instead of dumping raw API output. Include source, date, link, price, location, or category details when useful.7374## DataLab Guidance7576- Use `datalab_search` for keyword trend comparisons.77- For shopping insight requests, call `find_category` first when the user gives a natural-language category such as `화장품`, `노트북`, or `여성의류`.78- `find_category` is the main advantage of this MCP: users should not have to inspect Naver Shopping or DataLab URLs manually to find category codes.79- After selecting a category code, use the matching shopping trend tool for overall, device, gender, age, or keyword analysis.80- Ask the user only when multiple category candidates are genuinely ambiguous.81- For relative dates like today, recent, or current, use `"today"` when supported or state the assumed date range clearly.