- Home
- MCP servers
- Naver Search
Naver Search
- python
0
GitHub Stars
python
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"uju777-mcp-server-naver-search": {
"command": "uv",
"args": [
"run",
"--with",
"mcp[cli]",
"--with",
"httpx",
"--with",
"python-dotenv",
"/YOUR/PATH/TO/mcp-server-naver-search/server.py"
],
"env": {
"NAVER_CLIENT_ID": "YOUR_ID",
"NAVER_CLIENT_SECRET": "YOUR_SECRET"
}
}
}
}You deploy an MCP server that bridges Claude Desktop, Claude Code, and Cursor to Naver’s Korean data ecosystem. It lets you search Shopping, Cafe, News, and Blog content directly through MCP clients, providing localized, real-time results that other search engines may miss.
How to use
You can access Shopping, Cafe, News, and Blog capabilities by enabling the Naver Search MCP server in your MCP client configuration. Once loaded, you can ask your client to fetch the lowest shopping prices from Naver Shopping, pull real user reviews from Naver Cafe, get real-time Korean news, and discover authentic blogger reviews.
How to install
Prerequisites: Python 3.10+ and a Naver Developers API Key with free 25,000 requests per day.
Choose the MCP client integration that matches your environment and add the appropriate MCP server configuration.
Claude Desktop: add this to your claude_desktop_config.json
{
"mcpServers": {
"naver-search": {
"command": "uv",
"args": [
"run",
"--with", "mcp[cli]",
"--with", "httpx",
"--with", "python-dotenv",
"/YOUR/PATH/TO/mcp-server-naver-search/server.py"
],
"env": {
"NAVER_CLIENT_ID": "YOUR_ID",
"NAVER_CLIENT_SECRET": "YOUR_SECRET"
}
}
}
}
Claude Code (CLI)
Claude Code users add this to your ~/.claude/settings.json to start the MCP server from the command line.
{
"mcpServers": {
"naver-search": {
"command": "sh",
"args": [
"-c",
"export PATH=\"$HOME/.local/bin:$PATH\" && cd /YOUR/PATH/TO/mcp-server-naver-search && uv run --with 'mcp[cli]' --with httpx --with python-dotenv python server.py"
],
"env": {
"NAVER_CLIENT_ID": "YOUR_ID",
"NAVER_CLIENT_SECRET": "YOUR_SECRET"
}
}
}
}
Cursor
Cursor users can configure the MCP server in their Cursor settings to enable Naver Search.
{
"mcpServers": {
"naver-search": {
"command": "uv",
"args": [
"run",
"--with", "mcp[cli]",
"--with", "httpx",
"--with", "python-dotenv",
"/YOUR/PATH/TO/mcp-server-naver-search/server.py"
],
"env": {
"NAVER_CLIENT_ID": "YOUR_ID",
"NAVER_CLIENT_SECRET": "YOUR_SECRET"
}
}
}
}
Usage examples
After starting the MCP server, you can ask for real-time results in your client.
Notes and security
Keep your Naver API credentials secure. Do not share your NAVER_CLIENT_ID and NAVER_CLIENT_SECRET in public configurations. Restart your MCP clients after any credential changes.
Available tools
shopping
Query Naver Shopping to compare prices and list lowest offers from multiple retailers.
cafe
Search Naver Cafe posts to surface real-user reviews and discussions.
news
Retrieve real-time Korean news articles and summarize or filter by topic.
blog
Find authentic blogger reviews and opinions from Korean blogs.