Naver Search
STDIOMCP server for Naver Search API and DataLab API integration.
MCP server for Naver Search API and DataLab API integration.
MCP server for Naver Search API and DataLab API integration, enabling comprehensive search across various Naver services and data trend analysis.
If you want to install the MCP via npm, do NOT use @mseep/server-naver-search (https://www.npmjs.com/package/@mseep/server-naver-search). That package is a copy of my work and was published without my permission. The npx version of that package is also broken and will not work properly. Please use this official package instead.
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 @isnow890/naver-search-mcp
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", "@isnow890/naver-search-mcp"], "env": { "NAVER_CLIENT_ID": "your_client_id", "NAVER_CLIENT_SECRET": "your_client_secret" } } } }
Add to mcp.json
:
{ "mcpServers": { "naver-search": { "command": "npx", "args": ["-y", "@isnow890/naver-search-mcp"], "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