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 | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityOther | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 10 mo ago | this 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
- Install dependencies:
pip install -r requirements.txt- Configure your MCP client (Claude Desktop example):
{
"mcpServers": {
"CAD": {
"command": "python",
"args": [
"~/cad-mcp/src/server.py"
]
}
}
}- Start the server:
python src/server.pyeverything · 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