fusion-mcp
Controls Autodesk Fusion 360 from AI agents, providing tools for sketch creation, 3D modeling (extrude, revolve, sweep, loft), modifications (fillet, chamfer, shell, draft), patterns (rectangular, circular, mirror), booleans (combine, split), component management, joints (all 7 types), rigid groups, inspection (measure, interference, screenshot), export/import (STL, STEP, 3MF, mesh), and an escape hatch for arbitrary Python execution.
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., "@fusion-mcpdraw a 5cm circle and extrude it 2cm"
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.
fusion-mcp
Open-source MCP server for controlling Autodesk Fusion 360 from any AI agent. just Python.
MCP Client ──stdio──▶ MCP Server (Python) ──TCP──▶ Fusion 360 Add-in ──▶ Fusion APISetup
1. Clone and install
With uv (recommended):
git clone https://github.com/prim-design/fusion-mcp.git
cd fusion-mcp
uv pip install -e .With pip (macOS/Linux):
git clone https://github.com/prim-design/fusion-mcp.git
cd fusion-mcp
python3 -m venv .venv
source .venv/bin/activate
pip install -e .With pip (Windows):
git clone https://github.com/prim-design/fusion-mcp.git
cd fusion-mcp
python -m venv .venv
.venv\Scripts\activate
pip install -e .Requires Python 3.10+.
2. Install the Fusion 360 add-in
Copy the addin/ folder to Fusion's add-ins directory:
macOS:
cp -r addin/ "$HOME/Library/Application Support/Autodesk/Autodesk Fusion 360/API/AddIns/FusionMCP"Windows:
xcopy /E addin "%APPDATA%\Autodesk\Autodesk Fusion 360\API\AddIns\FusionMCP\"Then in Fusion 360: Shift+S → Add-Ins → select FusionMCP → Run (optionally check "Run on Startup").
3. Connect your MCP client
Claude Code:
claude mcp add fusion-mcp -- /path/to/fusion-mcp/.venv/bin/fusion-mcpClaude Desktop — add to claude_desktop_config.json:
{
"mcpServers": {
"fusion-mcp": {
"command": "/path/to/fusion-mcp/.venv/bin/fusion-mcp"
}
}
}Works with any MCP client — run .venv/bin/fusion-mcp as a stdio server.
Related MCP server: Fusion360 LLM Assistant
Tools (51)
Category | Tools |
Sketch |
|
3D Features |
|
Modifications |
|
Patterns |
|
Booleans |
|
Components |
|
Joints |
|
Rigid Groups |
|
Inspection |
|
Export/Import |
|
Utility |
|
Escape Hatch |
|
Joint types
create_joint supports all 7 Fusion joint types: rigid, revolute, slider, cylindrical, pin_slot, planar, ball. Uses as-built joints by default (components stay in place).
Screenshot
screenshot captures the viewport as a PNG image returned directly to the AI. Supports preset views (front, back, top, bottom, left, right, iso) and custom camera positions via eye_x/y/z + target_x/y/z.
Important notes
Units: All lengths in cm, all angles in degrees
Z-negation gotcha: On XZ plane, sketch +Y = world -Z. On YZ plane, sketch +X = world -Z.
Thread safety: The add-in dispatches all API calls to Fusion's main thread via CustomEvent
Escape hatch:
execute_pythonruns arbitrary Python inside Fusion for anything not covered by curated tools
How it works
The MCP server (server/) runs as a stdio process your AI agent connects to. It forwards commands over a TCP socket to the Fusion 360 add-in (addin/), which runs inside Fusion and executes API calls on the main thread using Fusion's CustomEvent system for thread safety.
License
MIT
This server cannot be installed
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
- Alicense-qualityDmaintenanceA Model Context Protocol server that connects LLMs with Autodesk Fusion, enabling CAD operations through natural language dialogue.Last updated4MIT
- Alicense-qualityDmaintenanceEnables natural language 3D modeling in Fusion 360 through an MCP server that translates user commands into Fusion 360 API calls. Supports creating, editing, and managing 3D objects, executing Python code, and capturing model views through conversational interactions.Last updated1MIT
- Alicense-qualityCmaintenanceMCP server for FreeCAD that enables AI assistants to create and manipulate 3D models via natural language.Last updatedMIT
- AlicenseAqualityBmaintenanceA self-hosted MCP server that lets Claude (or any MCP client) drive Autodesk Fusion 360 on your own machine.Last updated98MIT
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
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/prim-design/fusion-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server