by GDKsoftware
Native Delphi Server implementation of the Model Context Protocol (MCP)
# Add to your Claude Code skills
git clone https://github.com/GDKsoftware/Delphi-MCP-Server
A Model Context Protocol (MCP) server implementation in Delphi, designed to integrate with Claude Code, Codex, and other MCP-compatible clients for AI-powered Delphi development workflows.
No comments yet. Be the first to share your thoughts!
git clone https://github.com/GDKsoftware/delphi-mcp-server.git
cd delphi-mcp-server
build.bat
Or specify configuration and platform:
build.bat Debug Win32
build.bat Release Win64
Prerequisites:
From the batch file:
build.bat Release Linux64
Or from RAD Studio IDE:
The server supports two transport modes:
Start the server without arguments for HTTP transport with Server-Sent Events (SSE):
Win32\Debug\MCPServer.exe
The server will listen on http://localhost:3000/mcp by default (configurable via settings.ini).
**Use HT...