MCP Catalogs
Home

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
Score4777
Official
Categories
Developer ToolsAI / LLM ToolsOps & Infra
File SystemDeveloper ToolsProductivity
LanguagePascalTypeScript
Last committhis monththis 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

  1. Clone the repository:
git clone https://github.com/GDKsoftware/delphi-mcp-server.git
cd delphi-mcp-server
  1. Build the project:
Windows Build
build.bat
Linux Build
build.bat Release Linux64

Integration with Claude Code

claude mcp add --transport http delphi-mcp-server http://localhost:3000/mcp

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.