MCP Catalogs
Home

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
Score4077
Official
Categories
Developer ToolsOps & InfraOther
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit9 mo agothis 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

  1. Install Node.js >= 18
  2. Clone repository: git clone https://github.com/flydev-fr/mcp-delphi
  3. Install dependencies: pnpm install or npm install
  4. Build: pnpm run build
  5. Configure environment variables in .env file (paths to rsvars.bat and MSBuild)
  6. 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.

Comparison generated from public README + GitHub signals. Last updated automatically.