graphlit-mcp-server vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
graphlit-mcp-server by graphlit | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 375 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 51 | 77 |
| 官方 | — | ✓ |
| 分类 | 知识库 / RAG开发者工具效率工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 4 个月前 | 本月 |
graphlit-mcp-server · 概述
Graphlit平台的 MCP 服务器,提供丰富的知识管理和 RAG 工具,连接多种数据源。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
graphlit-mcp-server · 使用场景
- 从多种开发者和产品管理工具构建集中式知识库
- 使用来自 Slack、GitHub 和 Notion 等各种来源的内容实现 RAG 功能
- 跨文档、网页和通信创建 AI 驱动的搜索
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 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
filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。