everything vs docmole
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | docmole by Vigtu | |
|---|---|---|
| Stars | ★ 85,748 | ★ 18 |
| 30天用量 | — | — |
| 综合分 | 77 | 43 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具开发者工具搜索 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 1 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
docmole · 概述
一个MCP服务器,可以让你用AI查询任何文档站点,支持本地RAG和Mintlify驱动站点。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
docmole · 使用场景
- 从Claude或Cursor等AI助手直接搜索文档
- 为内部文档构建自定义文档搜索解决方案
- 使AI助手能够从文档来源提供准确、最新的信息
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-everythingdocmole · 安装
安装
使用bunx(无需安装):
bunx docmole --help或全局安装:
bun install -g docmole本地RAG模式
# 一次性设置
bunx docmole setup --url https://docs.example.com --id my-docs
# 启动MCP服务器
bunx docmole serve --project my-docsMintlify模式(零设置)
bunx docmole -p agno-v2Claude桌面配置
{
"mcpServers": {
"my-docs": {
"command": "bunx",
"args": ["docmole", "serve", "--project", "my-docs"]
},
"mintlify-docs": {
"command": "bunx",
"args": ["docmole", "-p", "agno-v2"]
}
}
}