MCP Catalogs
Home

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
Score4777
Official
Categories
Developer ToolsAI / LLM ToolsOps & Infra
Developer ToolsAI / LLM ToolsOther
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.

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

  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

everything · 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
Comparison generated from public README + GitHub signals. Last updated automatically.