MCP Catalogs
Home

everything vs freecad-addon-robust-mcp-server

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

everything
by modelcontextprotocol
freecad-addon-robust-mcp-server
by spkane
Stars★ 85,748★ 84
30d uses
Score7749
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

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

freecad-addon-robust-mcp-server · Summary

A comprehensive MCP server connecting AI assistants to FreeCAD for 3D modeling with 150+ tools.

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-addon-robust-mcp-server · Use cases

  • AI-assisted 3D modeling and design automation
  • Debugging FreeCAD models and macros through AI conversation
  • Generating FreeCAD code and templates programmatically
  • Creating complex geometric shapes with natural language instructions
  • Batch processing multiple 3D models

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

freecad-addon-robust-mcp-server · Install

Installation

Using pip (recommended)

pip install freecad-robust-mcp

Using Docker

docker pull spkane/freecad-robust-mcp

Claude Desktop Configuration

Add the following to your ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "freecad": {
      "command": "freecad-mcp",
      "env": {
        "FREECAD_MODE": "xmlrpc"
      }
    }
  }
}

FreeCAD Workbench Installation

  1. Install the Robust MCP Bridge workbench via FreeCAD's Addon Manager:

- Edit → Preferences → Addon Manager - Search for "Robust MCP Bridge" - Install and restart FreeCAD

  1. Switch to the Robust MCP Bridge workbench
  2. Click the Start MCP Bridge button
Comparison generated from public README + GitHub signals. Last updated automatically.