The FreeCAD MCP server is a powerful tool that enables seamless control of FreeCAD from Claude Desktop. This integration allows users to automate and streamline their CAD workflows using Claude's advanced capabilities.
To install the FreeCAD MCP addon, follow these steps:
%APPDATA%\FreeCAD\Mod\
~/Library/Application Support/FreeCAD/Mod/
Linux: ~/.FreeCAD/Mod/
or ~/snap/freecad/common/Mod/
(if installed via snap)
Copy the addon/FreeCADMCP
directory to the addon directory.
Restart FreeCAD and select "MCP Addon" from the Workbench list.
Start the RPC server by using the "Start RPC Server" command in the "FreeCAD MCP" toolbar.
Edit the claude_desktop_config.json
file to configure the MCP server.
{
"mcpServers": {
"freecad": {
"command": "uvx",
"args": [
"freecad-mcp"
]
}
}
}
git clone https://github.com/neka-nat/freecad-mcp.git
{
"mcpServers": {
"freecad": {
"command": "uv",
"args": [
"--directory",
"/path/to/freecad-mcp/",
"run",
"freecad-mcp"
]
}
}
}
The FreeCAD MCP server provides the following tools:
create_document
: Create a new document in FreeCAD.create_object
: Create a new object in FreeCAD.edit_object
: Edit an object in FreeCAD.delete_object
: Delete an object in FreeCAD.execute_code
: Execute arbitrary Python code in FreeCAD.insert_part_from_library
: Insert a part from the parts library.get_view
: Get a screenshot of the active view.get_objects
: Get all objects in a document.get_object
: Get an object in a document.get_parts_list
: Get the list of parts in the parts library.No releases published.
No packages published.