FreeCAD MCP
Provides tools for interacting with a live FreeCAD desktop session, enabling AI agents to create and edit 3D geometry, manage documents, capture screenshots of the 3D view, and export models to various formats.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@FreeCAD MCPCreate a plate with four drilled holes and export as STEP."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
FreeCAD MCP
An MCP server that lets an AI agent drive a live FreeCAD desktop session — the model builds geometry, you watch it appear in the FreeCAD window, and the agent can screenshot the 3D view to check its own work.
Verified against FreeCAD 1.1.3 on macOS.
How it works
MCP client (opencode)
│ stdio / MCP
▼
freecad-mcp ← own uv venv, Python 3.10+, mcp SDK
│ XML-RPC on 127.0.0.1:9875
▼
FreeCADMCP addon ← runs inside FreeCAD's bundled Python 3.11
│ QTimer task queue
▼
FreeCAD GUI main thread ← documents, geometry, 3D viewTwo processes, deliberately. The MCP server never imports FreeCAD, so it can use a modern venv and any dependencies it likes, while the addon stays stdlib-only inside FreeCAD's interpreter.
The RPC server runs on a background thread, but every FreeCAD call is marshalled
onto the Qt main thread through a queue drained by a QTimer
(addon/FreeCADMCP/freecad_mcp_bridge/dispatcher.py). Touching FreeCAD documents from
a worker thread corrupts state or crashes the app, so this hop is not optional.
The wire protocol is a single call(method, payload_json) -> json endpoint. Passing
JSON through one method sidesteps every XML-RPC marshalling quirk (no None, no
nested heterogeneous types) and keeps errors as structured data instead of faults.
Related MCP server: FreeCAD Robust MCP Server
Setup
make install # create the venv, install dependencies
make addon-install # symlink the addon into FreeCAD's Mod directory
make freecad # start FreeCAD -- the bridge autostarts
make check # confirm the bridge answersmake check should print your FreeCAD version and open documents.
The addon is symlinked, not copied, so edits in this repo take effect on the next
FreeCAD restart (make freecad-restart).
Wiring it into opencode
opencode.json already registers the server. Restart opencode to pick it up —
config is read once at startup.
It uses "cwd": ".", which opencode resolves from the workspace directory, so there
is no absolute path to update when you clone this elsewhere.
timeout is raised to 120s because the 5s default is not enough for capture_view
or export_objects on a non-trivial model.
Other MCP clients
Clients without a workspace concept (Claude Desktop and friends) need an explicit
path — replace /absolute/path/to/FreeCAD-MCP with wherever you cloned this:
{
"mcpServers": {
"freecad": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/FreeCAD-MCP", "freecad-mcp"]
}
}
}Tools
Tool | Purpose |
| Connectivity check, FreeCAD version, open documents |
| Document management |
| Persistence and rebuild |
| Inspect the tree; |
| Typed geometry editing |
| Read what the user selected in the GUI |
| Execute Python inside FreeCAD (escape hatch) |
| Screenshot the 3D view, returned as an image |
| STEP, IGES, STL, OBJ, PLY, 3MF, AMF, OFF, BREP, FCStd |
Value formats
create_object and edit_object accept JSON and coerce it to FreeCAD's native types:
Property kind | Accepted |
lengths |
|
vectors |
|
placement |
|
rotation |
|
links |
|
colours |
|
Angles are degrees, lengths millimetres.
view_properties targets the ViewObject: ShapeColor, Transparency (0–100),
DisplayMode, Visibility.
Example
Creating a plate with four drilled holes:
create_object type_id="Part::Box" properties={"Length":60,"Width":40,"Height":10}
create_object type_id="Part::Cylinder" properties={"Radius":3,"Height":20,
"Placement":{"Base":[10,10,-5]}}
create_object type_id="Part::Cut" properties={"Base":"Box","Tool":"Cylinder"}
capture_view # look at it before declaring success
export_objects path="~/plate.step"Configuration
Variable | Default | Applies to |
|
| both |
|
| both |
|
| MCP server |
|
| addon |
The addon also reads FreeCAD parameters under
BaseApp/Preferences/Mod/FreeCADMCP (Host, Port, AutoStart), editable via
Tools > Edit parameters. Environment variables win.
The bridge binds to loopback only and has no authentication — anything that can reach
the port can execute arbitrary Python in FreeCAD. Do not expose it beyond 127.0.0.1.
Bridge controls in FreeCAD
The addon adds an MCP workbench with Start / Stop / Status commands. The bridge autostarts 1.5s after the GUI is up, and stops cleanly on quit.
Development
make smoke # end-to-end test through a real MCP client (FreeCAD must run)
make lint # ruff
make freecad-restart # reload addon changes
make addon-status # is the addon linked?make smoke exercises all 18 tools against a live session and verifies boolean
geometry numerically (a drilled plate's volume must match l·w·h − nπr²h).
Two FreeCAD gotchas this codebase works around
1. InitGui.py has no usable module scope. FreeCAD runs it via exec from
inside a function, so top-level names become that function's locals. Any function or
class method defined in InitGui.py resolves its globals against FreeCAD's own init
module and dies with NameError. All logic therefore lives in
freecad_mcp_bridge/workbench.py, which is imported normally; InitGui.py is a
five-line shim.
2. package.xml decides where FreeCAD looks for your code. When a workbench
entry omits <subdirectory>, FreeCAD defaults it to the workbench <name> — so a
workbench named MCP makes FreeCAD search FreeCADMCP/MCP/InitGui.py and silently
skip the addon. Hence the explicit <subdirectory>./</subdirectory>.
A third, smaller one: in FreeCAD 1.x, ShapeColor is a Python shim over
ShapeAppearance rather than a registered property, so getTypeIdOfProperty fails
for it. serialize.py falls back to inferring the type from the value currently
stored.
Layout
addon/FreeCADMCP/ installed into FreeCAD's Mod directory
InitGui.py thin shim (see gotcha 1)
package.xml addon metadata (see gotcha 2)
freecad_mcp_bridge/
workbench.py workbench, commands, autostart
server.py XML-RPC server + JSON envelope
dispatcher.py background thread -> Qt main thread
handlers.py the FreeCAD operations
serialize.py JSON <-> FreeCAD type conversion
src/freecad_mcp/
server.py MCP tool definitions
client.py XML-RPC client
__main__.py CLI entry point
scripts/smoke.py end-to-end testTroubleshooting
make check says the bridge is unreachable. Confirm FreeCAD is running, the addon
is linked (make addon-status), and check FreeCAD's View > Panels > Report view for
[FreeCAD MCP] messages.
Address already in use on startup. A previous FreeCAD process still holds the
port — make freecad-quit force-kills leftovers.
Addon changes have no effect. The addon is imported once at startup; run
make freecad-restart.
A tool times out. Something is blocking FreeCAD's main thread, usually a modal dialog. Dismiss it in the GUI.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables to control FreeCAD from Claude Desktop through MCP, allowing CAD operations like creating and editing objects, taking screenshots, and executing Python code.Last updated11MIT
- Alicense-qualityCmaintenanceEnables AI assistants to interact with FreeCAD for 3D modeling, macros, and debugging via MCP.Last updatedMIT
- Flicense-qualityCmaintenanceEnables AI to directly call FreeCAD for 3D modeling via the MCP protocol, providing 39 modeling tools including primitive creation, boolean operations, transformations, and export.Last updated1
- Alicense-qualityCmaintenanceEnables AI agents to programmatically build, analyze, and export 3D CAD geometry using FreeCAD through REST or MCP tools.Last updated1MIT
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Generate, edit, and deploy immersive 3D/WebGL web projects from any MCP assistant.
Free public MCP for AI agents — 193 tools, 44 workflows. No API key.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ahelja/FreeCAD-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server