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 | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsKnowledge Graph | Developer ToolsAI / LLM ToolsOther |
| Language | Pascal | TypeScript |
| Last commit | this month | this 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.
- Download the latest release from GitHub
- Add the MakerAI suite units to your Delphi project
- Configure your AI provider credentials
- 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