naver-search-mcp vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
naver-search-mcp by isnow890 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 68 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | 搜索电商AI / LLM 工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
naver-search-mcp · 概述
Naver Search API 集成的 MCP 服务器,提供全面的搜索和数据分析工具。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
naver-search-mcp · 使用场景
- 通过搜索和趋势分析进行韩国市场研究
- 在 Naver 生态系统服务中发现内容
- 电商产品研究和竞争对手分析
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
naver-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+
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything