Delphi-MCP-Server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Delphi-MCP-Server by GDKsoftware | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 117 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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/mcpeverything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything