MCP Catalogs
Home

mcp-delphi vs everything

Side-by-side comparison to help you pick between these two MCP servers.

mcp-delphi
by flydev-fr
everything
by modelcontextprotocol
Stars★ 17★ 85,748
30d uses
Score4077
Official
Categories
Developer ToolsOps & InfraOther
Developer ToolsAI / LLM ToolsOther
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.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

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

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"]
    }
  }
}

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.