Delphi-MCP-Server vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
Delphi-MCP-Server by GDKsoftware | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 117 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 47 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具运维基建 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Pascal | TypeScript |
| 最近提交 | 本月 | 本月 |
Delphi-MCP-Server · 概述
用Delphi实现的MCP协议原生实现,支持HTTP和STDIO传输模式,用于AI驱动的Delphi开发工作流。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
Delphi-MCP-Server · 使用场景
- 将Claude Code与Delphi开发环境集成,实现AI辅助编程
- 通过MCP协议使Codex能够与Delphi项目交互
- 为Delphi IDE集成构建自定义AI驱动工具
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
Delphi-MCP-Server · 安装
安装
- 克隆仓库:
git clone https://github.com/GDKsoftware/delphi-mcp-server.git
cd delphi-mcp-server- 构建项目:
Windows构建
build.batLinux构建
build.bat Release Linux64与Claude Code集成
claude mcp add --transport http delphi-mcp-server http://localhost:3000/mcpfilesystem · 安装
安装
使用 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 中安装。