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 | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 9 mo ago | this 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
- Install Node.js >= 18
- Clone repository:
git clone https://github.com/flydev-fr/mcp-delphi - Install dependencies:
pnpm installornpm install - Build:
pnpm run build - Configure environment variables in
.envfile (paths to rsvars.bat and MSBuild) - 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