delimit-mcp-server vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
delimit-mcp-server by delimit-ai | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 16 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 42 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具安全 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
delimit-mcp-server · 概述
AI代码治理的MCP服务器,支持多个AI助手,提供验证和部署门控功能。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
delimit-mcp-server · 使用场景
- 跨多个AI工具的AI辅助代码开发治理
- 合并前的变更检测和API合同验证
- 多模型讨论以达成技术决策共识
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
delimit-mcp-server · 安装
安装为MCP服务器:
{
"mcpServers": {
"delimit": {
"command": "npx",
"args": ["delimit-mcp-server"]
}
}
}或通过CLI安装:
npm install -g delimit-cliGitHub Actions集成:
- uses: delimit-ai/delimit-action@v1filesystem · 安装
安装
使用 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 中安装。