MCP Catalogs
Home

MakerAi vs everything

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

MakerAi
by gustavoeenriquez
everything
by modelcontextprotocol
Stars★ 173★ 85,748
30d uses
Score4877
Official
Categories
AI / LLM ToolsDeveloper ToolsKnowledge Graph
Developer ToolsAI / LLM ToolsOther
LanguagePascalTypeScript
Last committhis monththis month

MakerAi · Summary

MakerAI is a complete AI ecosystem for Delphi with MCP server/client support, RAG, and autonomous agents.

everything · Summary

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

MakerAi · Use cases

  • Building Delphi applications with integrated AI capabilities using MCP protocol
  • Implementing RAG systems for enterprise knowledge management
  • Creating autonomous agents for automated workflows with human approval checkpoints

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

MakerAi · Install

Installation

MakerAI supports Delphi 10.4+ with full support from Delphi 12 Athens. A Free Pascal/Lazarus port is also available.

  1. Download the latest release from GitHub
  2. Add the MakerAI suite units to your Delphi project
  3. Configure your AI provider credentials
  4. Implement MCP server functionality with uMakerAi.MCPServer.Core.pas

To use MakerAI as an MCP client:

{
  "mcpServers": {
    "makerai": {
      "command": "path/to/your/delphi/app",
      "args": ["--mcp-server"]
    }
  }
}

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.