MCP Catalogs
Home

CAD-MCP vs everything

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

CAD-MCP
by daobataotie
everything
by modelcontextprotocol
Stars★ 338★ 85,748
30d uses
Score4777
Official
Categories
Developer ToolsProductivityOther
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit10 mo agothis month

CAD-MCP · Summary

MCP server that controls CAD software through natural language commands for drawing operations.

everything · Summary

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

CAD-MCP · Use cases

  • Automating CAD drawing creation through text commands
  • Integrating CAD operations into AI workflows
  • Creating custom CAD tools through natural language interfaces

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

CAD-MCP · Install

Installation

  1. Install dependencies:
pip install -r requirements.txt
  1. Configure your MCP client (Claude Desktop example):
{
    "mcpServers": {
        "CAD": {
            "command": "python",
            "args": [
                "~/cad-mcp/src/server.py"
            ]
        }
    }
}
  1. Start the server:
python src/server.py

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.