MCP server for Naver Search API integration. Provides comprehensive search capabilities across Naver services (web, news, blog, shopping, etc) and data trend analysis tools via DataLab API.
MCP server for Naver Search API and DataLab API integration, enabling comprehensive search across various Naver services and data trend analysis.
To install Naver Search MCP Server automatically via Smithery, use one of these commands based on your AI client:
For Claude Desktop:
npx -y @smithery/cli@latest install @isnow890/naver-search-mcp --client claude
For Cursor:
npx -y @smithery/cli@latest install @isnow890/naver-search-mcp --client cursor
For Windsurf:
npx -y @smithery/cli@latest install @isnow890/naver-search-mcp --client windsurf
For Cline:
npx -y @smithery/cli@latest install @isnow890/naver-search-mcp --client cline
The installer will prompt you for:
# Windows
set NAVER_CLIENT_ID=your_client_id
set NAVER_CLIENT_SECRET=your_client_secret
# Linux/Mac
export NAVER_CLIENT_ID=your_client_id
export NAVER_CLIENT_SECRET=your_client_secret
npx @modelcontextprotocol/server-naver-search
docker run -i --rm \
-e NAVER_CLIENT_ID=your_client_id \
-e NAVER_CLIENT_SECRET=your_client_secret \
mcp/naver-search
Add to claude_desktop_config.json
:
{
"mcpServers": {
"naver-search": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-naver-search"],
"env": {
"NAVER_CLIENT_ID": "your_client_id",
"NAVER_CLIENT_SECRET": "your_client_secret"
}
}
}
}
For Docker:
{
"mcpServers": {
"naver-search": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"NAVER_CLIENT_ID=your_client_id",
"-e",
"NAVER_CLIENT_SECRET=your_client_secret",
"mcp/naver-search"
]
}
}
}
Docker build:
docker build -t mcp/naver-search .
MIT License