ultimate_mcp_server vs naver-search-mcp
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | naver-search-mcp by isnow890 | |
|---|---|---|
| Stars | ★ 149 | ★ 68 |
| 30d uses | — | — |
| Score | 85 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | SearchE-commerceAI / LLM Tools |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
naver-search-mcp · Summary
MCP server for Naver Search API integration with comprehensive search and DataLab analytics tools.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_servernaver-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+