MCP Catalogs
Home

freecad-mcp vs everything

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

freecad-mcp
by contextform
everything
by modelcontextprotocol
Stars★ 73★ 85,748
30d uses
Score4377
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit9 mo agothis month

freecad-mcp · Summary

FreeCAD MCP enables AI-powered 3D modeling and CAD automation through natural language commands in Claude

everything · Summary

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

freecad-mcp · Use cases

  • Automate CAD modeling tasks through natural language instructions
  • Create complex 3D models like buildings and mechanical parts with simple commands
  • Integrate AI design assistants into existing FreeCAD workflows

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

freecad-mcp · Install

Installation

Quick Install

**Windows:**

python -m pip install --user mcp
npm install -g freecad-mcp-setup@latest
npx freecad-mcp-setup setup

**macOS/Linux:**

pip install mcp
npm install -g freecad-mcp-setup@latest
npx freecad-mcp-setup setup

Claude Desktop Configuration

Add to your Claude Desktop config:

{
  "mcpServers": {
    "freecad": {
      "command": "python3",
      "args": ["/path/to/.freecad-mcp/working_bridge.py"]
    }
  }
}

**Config file locations:**

  • **macOS**: ~/Library/Application Support/Claude/claude_desktop_config.json
  • **Windows**: %APPDATA%/Claude/claude_desktop_config.json

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.