naver-search-mcp vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
naver-search-mcp by isnow890 | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 68 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 76 |
| Official | — | ✓ |
| Categories | SearchE-commerceAI / LLM Tools | Web ScrapingAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
naver-search-mcp · Summary
MCP server for Naver Search API integration with comprehensive search and DataLab analytics tools.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
naver-search-mcp · Use cases
- Korean market research through search and trend analysis
- Content discovery across Naver's ecosystem of services
- E-commerce product research and competitor analysis
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
naver-search-mcp · Install
Installation
Method 1: NPX Installation (Recommended)
For Claude Desktop, add to your 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"
}
}
}
}Method 2: Local Installation
- Clone and build the source code:
git clone https://github.com/isnow890/naver-search-mcp.git
cd naver-search-mcp
npm install
npm run build- Update Claude Desktop configuration with the path to the built files:
{
"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"
}
}
}
}Prerequisites: Naver Developers API Key, Node.js 18+, NPM 8+
fetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}