graphlit-mcp-server vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
graphlit-mcp-server by graphlit | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 375 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 51 | 77 |
| 官方 | — | ✓ |
| 分类 | 知识库 / RAG开发者工具效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 4 个月前 | 本月 |
graphlit-mcp-server · 概述
Graphlit平台的 MCP 服务器,提供丰富的知识管理和 RAG 工具,连接多种数据源。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
graphlit-mcp-server · 使用场景
- 从多种开发者和产品管理工具构建集中式知识库
- 使用来自 Slack、GitHub 和 Notion 等各种来源的内容实现 RAG 功能
- 跨文档、网页和通信创建 AI 驱动的搜索
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
graphlit-mcp-server · 安装
通过 npx 安装 Graphlit MCP 服务器:
npx -y graphlit-mcp-server对于 Claude Desktop,添加到您的 claude_desktop_config.json:
{
"mcpServers": {
"graphlit": {
"command": "npx",
"args": ["-y", "graphlit-mcp-server"],
"env": {
"GRAPHLIT_ORGANIZATION_ID": "your-organization-id",
"GRAPHLIT_ENVIRONMENT_ID": "your-environment-id",
"GRAPHLIT_JWT_SECRET": "your-jwt-secret"
}
}
}
}必需的环境变量:
GRAPHLIT_ORGANIZATION_IDGRAPHLIT_ENVIRONMENT_IDGRAPHLIT_JWT_SECRET
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