mcp-delphi vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-delphi by flydev-fr | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 17 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraOther | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 9 mo ago | this month |
mcp-delphi · Summary
MCP server for building and cleaning Delphi, Lazarus, and Free Pascal projects via MSBuild and lazbuild tools.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-delphi · Use cases
- Automating build processes for Delphi applications via MCP tools in AI assistants
- Cleaning build artifacts from Pascal projects without manual IDE intervention
- Building Lazarus projects with specific configurations remotely through MCP protocol
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
mcp-delphi · Install
- Install Node.js >= 18
- Clone repository:
git clone https://github.com/flydev-fr/mcp-delphi - Install dependencies:
pnpm installornpm install - Build:
pnpm run build - Configure environment variables in
.envfile (paths to rsvars.bat and MSBuild) - Run server:
node --env-file=.env dist/server.js
For Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-delphi": {
"command": "node",
"args": ["--env-file=.env", "/path/to/mcp-delphi/dist/server.js"]
}
}
}filesystem · 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.