ultimate_mcp_server vs naver-search-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
ultimate_mcp_server by Dicklesworthstone | naver-search-mcp by isnow890 | |
|---|---|---|
| Stars | ★ 149 | ★ 68 |
| 30天用量 | — | — |
| 综合分 | 85 | 48 |
| 官方 | — | — |
| 分类 | AI / LLM 工具浏览器自动化本地文件系统 | 搜索电商AI / LLM 工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
ultimate_mcp_server · 概述
一个功能全面的 MCP server,为 AI 提供多种能力:LLM 委托、浏览器自动化、文档处理和认知记忆系统。
naver-search-mcp · 概述
Naver Search API 集成的 MCP 服务器,提供全面的搜索和数据分析工具。
ultimate_mcp_server · 使用场景
- 使用 OCR 和结构化数据提取进行复杂的文档处理和分析
- 跨多个网站进行网页自动化和研究,通过浏览器控制
- 通过模型间的智能任务分配实现成本优化的 AI 工作流
naver-search-mcp · 使用场景
- 通过搜索和趋势分析进行韩国市场研究
- 在 Naver 生态系统服务中发现内容
- 电商产品研究和竞争对手分析
ultimate_mcp_server · 安装
安装
- 克隆仓库:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- 安装依赖:
pip install -e .- 对于 Claude Desktop 集成,添加到 claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- 运行服务器:
python -m ultimate_mcp_servernaver-search-mcp · 安装
安装
方法 1:NPX 安装(推荐)
对于 Claude Desktop,添加到配置文件中(Windows: %APPDATA%\Claude\claude_desktop_config.json,macOS/Linux: ~/Library/Application Support/Claude/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"
}
}
}
}方法 2:本地安装
- 克隆并构建源代码:
git clone https://github.com/isnow890/naver-search-mcp.git
cd naver-search-mcp
npm install
npm run build- 更新 Claude Desktop 配置,指向构建后的文件:
{
"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"
}
}
}
}先决条件:Naver Developers API 密钥,Node.js 18+,NPM 8+