everything vs ref-tools-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | ref-tools-mcp by ref-tools | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1,104 |
| 30天用量 | — | — |
| 综合分 | 77 | 54 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具搜索 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
ref-tools-mcp · 概述
Ref MCP 提供高效的 API 文档搜索工具,减少上下文损耗并降低成本。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
ref-tools-mcp · 使用场景
- AI 编码代理搜索 API 文档而不压垮上下文窗口
- 开发团队为多个服务维护最新参考文档
- 通过最小化获取文档时的令牌使用来降低成本
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-everythingref-tools-mcp · 安装
安装选项
流式 HTTP(推荐)
在 Cursor 配置中添加:
"Ref": {
"type": "http",
"url": "https://api.ref.tools/mcp?apiKey=YOUR_API_KEY"
}stdio(传统)
在 Cursor 配置中添加:
"Ref": {
"command": "npx",
"args": ["ref-tools-mcp@latest"],
"env": {
"REF_API_KEY": <注册以获取 API 密钥>
}
}Claude Desktop
在 claude_desktop_config.json 中添加:
{
"mcpServers": {
"ref-tools": {
"command": "npx",
"args": ["ref-tools-mcp@latest"]
}
}
}