Delphi-MCP-Server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
Delphi-MCP-Server by GDKsoftware | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 117 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOps & Infra | File SystemDeveloper ToolsProductivity |
| Language | Pascal | TypeScript |
| Last commit | this month | this month |
Delphi-MCP-Server · Summary
A native Delphi implementation of MCP protocol with HTTP and STDIO transport modes for AI-powered Delphi development workflows.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
Delphi-MCP-Server · Use cases
- Integrating Claude Code with Delphi development environments for AI-assisted coding
- Enabling Codex to interact with Delphi projects through MCP protocol
- Building custom AI-powered tools for Delphi IDE integration
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
Delphi-MCP-Server · Install
Installation
- Clone the repository:
git clone https://github.com/GDKsoftware/delphi-mcp-server.git
cd delphi-mcp-server- Build the project:
Windows Build
build.batLinux Build
build.bat Release Linux64Integration with Claude Code
claude mcp add --transport http delphi-mcp-server http://localhost:3000/mcpfilesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using 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 Extension
Click the installation buttons in the README to install directly in VS Code.