filesystem vs lumen
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | lumen by ory | |
|---|---|---|
| Stars | ★ 85,748 | ★ 190 |
| 30天用量 | — | — |
| 综合分 | 77 | 51 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 开发者工具AI / LLM 工具搜索 |
| 实现语言 | TypeScript | Go |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
lumen · 概述
本地语义代码搜索引擎,可将AI代理的令牌使用减少高达66%。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
lumen · 使用场景
- 增强 Claude Code、Cursor、Codex 和 OpenCode AI 助手的代码搜索
- 减少大型代码库中代码分析的AI处理成本
- 通过提供语义代码搜索提高开发效率
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 中安装。
lumen · 安装
安装
Claude Code
/plugin marketplace add ory/claude-plugins
/plugin install lumen@ory通过启动新的 Claude 会话并运行 /lumen:doctor 来验证。
Cursor
Lumen 提供 Cursor 插件包。使用 .cursor-plugin/ 目录中的包通过 Cursor 的插件安装流程。
Codex
codecodex mcp add lumen -- "${CODEX_HOME:-$HOME/.codex}/lumen/scripts/run" stdioOpenCode
将 @ory/lumen-opencode 添加到您 opencode.json 中的插件数组中:
{
"plugin": ["@ory/lumen-opencode"]
}