A community-driven registry for the Claude Code ecosystem. Not affiliated with Anthropic.
Are you the author? Sign in to claim
MCP server for Naver Search API integration. Provides comprehensive search capabilities across Naver services (web, news
MCP server for Naver Search API and DataLab API integration, enabling comprehensive search across various Naver services and data trend analysis.
You can install this MCP server as an OpenClaw skill from ClawHub:
openclaw skills install naver-search-mcp
The ClawHub skill uses the published npm package internally and requires NAVER_CLIENT_ID and NAVER_CLIENT_SECRET in your OpenClaw environment.
You can use this server immediately without API keys through Kakao PlayMCP. Simply visit the link and start using it right away!
The most reliable way to use this MCP server is through NPX. For detailed package information, see the NPM package page.
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"
}
}
}
}
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"
}
}
}
}
This MCP server can also be used from OpenClaw through the ClawHub skill wrapper. Install it with:
openclaw skills install naver-search-mcp
The ClawHub skill uses the same published npm package internally:
npx -y @isnow890/naver-search-mcp
Make sure NAVER_CLIENT_ID and NAVER_CLIENT_SECRET are configured in your OpenClaw environment before using the skill.
For local development or custom modifications:
git clone https://github.com/isnow890/naver-search-mcp.git
cd naver-search-mcp
npm install
npm run build
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.
After building, you'll need the following information:
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"
}
}
}
}
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"
}
}
}
}
⚠️ Important: You must change the following paths in the above configuration to your actual installation paths:
C:\\path\\to\\naver-search-mcp to your actual downloaded folder path/path/to/naver-search-mcp to your actual downloaded folder pathdist/src/index.js (not just index.js)Finding your path:
# Check current location
pwd
# Absolute path examples
# Windows: C:\Users\username\Downloads\naver-search-mcp
# macOS: /Users/username/Downloads/naver-search-mcp
# Linux: /home/username/Downloads/naver-search-mcp
After completing the configuration, completely close and restart Claude Desktop to activate the Naver Search MCP server.
MIT License
find_category data loading when the MCP server is launched by npx from a different working directorysearch_webkr tool for Korean web searchget_current_korean_time tool for essential Korea Standard Time contextfind_category tool with fuzzy matching so you no longer need to check category numbers manually in URLsRun Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
English-first Korean equity intelligence MCP — DART filings, foreign-holder 5%-rule flows, activist filings, KRX news. F
Unity MCP acts as a bridge between AI assistants and your Unity Editor. Give your LLM tools to manage assets, control sc
0
via CLI