OCTALUME vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
OCTALUME by Harery | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 37 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具安全 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
OCTALUME · 概述
AI 原生 SDLC 框架,具有 8 阶段门控、合规扫描器和 MCP 集成,适用于受监管行业。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
OCTALUME · 使用场景
- 医疗健康领域的开发,具有 HIPAA 合规自动化功能
- 金融科技/银行业务应用,具有 PCI DSS 和 SOX 合规跟踪
- 政府和国防项目,满足 FedRAMP/NIST 800-53 要求
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
OCTALUME · 安装
# 从 PyPI 安装
pip install octalume
# 初始化项目
octalume init my-app --compliance hipaa soc2
# 运行特定阶段
octalume start 1配置 Claude Code 以使用 OCTALUME 的 MCP 服务器:
{
"mcpServers": {
"octalume": {
"command": "python",
"args": ["-m", "octalume.mcp.server"]
}
}
}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 中安装。