Freecad MCP Server

The FreeCAD MCP (Model Control Protocol) provides a simplified interface for interacting with FreeCAD through a server-client architecture. This

Local serverstdioPython

What is the Freecad MCP MCP server?

Most developer tooling work still happens through a UI a human drives. Freecad MCP MCP server moves it into the conversation instead. The FreeCAD MCP (Model Control Protocol) provides a simplified interface for interacting with FreeCAD through a server-client architecture. This allows users to execute commands and retrieve information about the current FreeCAD document.

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

The tools it exposes

The server publishes 3 tools. What each one is for:

  • Windows — The Windows tool exposed by this server
  • Linux — The Linux tool exposed by this server
  • macOS — The macOS tool exposed by this server

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Freecad MCP's toolset — Windows, Linux, macOS — is a fair guide to whether it matches your workflow. It is maintained by bonninr; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
WindowsThe Windows tool exposed by this server.
LinuxThe Linux tool exposed by this server.
macOSThe macOS tool exposed by this server.

How to install the Freecad MCP MCP server

{
    "mcpServers": {
        "freecad": {
            "command": "C:\\ProgramData\\anaconda3\\python.exe",
            "args": [
                "C:\\Users\\USER\\AppData\\Roaming\\FreeCAD\\Mod\\freecad_mcp\\src\\freecad_bridge.py"
            ]
        }
    }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Freecad MCP to Windows.
  • Use Freecad MCP to Linux.
  • Use Freecad MCP to macOS.

Frequently asked questions

It connects Freecad MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (Windows, Linux, macOS) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Freecad MCP directly.