Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"FusionMCP": {
"args": [
"--directory",
"C:\\Path\\to\\FusionMCP\\Server",
"run",
"MCP_Server.py"
],
"command": "uv"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in design
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
A mcp server to allow LLMS gain context about shadcn ui component structure,usage and installation,compaitable with react,svelte 5,vue & React Native
AI image generation and editing with prompt optimization and quality presets. Powered by Nano Banana
MCP Security Weekly
Get CVE alerts and security updates for Autodesk Fusion 360 MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
https://github.com/user-attachments/assets/46c8140e-377d-4618-a304-03861cb3d7d9
Fusion MCP Integration bridges AI assistants with Autodesk Fusion 360 through the Model Context Protocol (MCP). This enables:
Note: This is designed as an assistive tool and educational project, not a replacement for professional CAD workflows. Projects like this can assist people with no experience in CAD workflows.
Goal: Enable conversational CAD and AI-driven automation in Fusion.
I highly recommend to do everything inside Visual Studio Code or an other IDE
| Requirement | Link |
|---|---|
| Python 3.10+ | https://python.org |
| Autodesk Fusion 360 | https://autodesk.com/fusion360 |
| Claude Desktop | https://claude.ai/download |
| VS Code | https://code.visualstudio.com |
git clone https://github.com/JustusBraitinger/FusionMCP
Important: Do NOT start the Add-In yet.
cd Server
python -m venv venv
Windows PowerShell
.\venv\Scripts\Activate
pip install -r requirements.txt
pip install "mcp[cli]"
cd ..
python Install_Addin.py
The most simple way to add the MCP-Server to Claude Desktop is to run following command:
cd Server
uv run mcp install MCP_Server.py
The output should be like this:
[11/13/25 08:42:37] INFO Added server 'Fusion' to Claude config
INFO Successfully installed Fusion in Claude app
In Claude Desktop go to:
Settings → Developer → Edit Config
Add this block (change the path for your system):
{
"mcpServers": {
"FusionMCP": {
"command": "uv",
"args": [
"--directory",
"C:\\Path\\to\\FusionMCP\\Server",
"run",
"MCP_Server.py"
]
}
}
}
Note: Windows paths require double backslashes
\\
Create or edit the file:
%APPDATA%\Code\User\globalStorage\github.copilot-chat\mcp.json
Paste:
{
"servers": {
"FusionMCP": {
"url": "http://127.0.0.1:8000/sse",
"type": "http"
}
},
"inputs": []
}
FusionMCP!!http://127.0.0.1:8000/sse
Activate the Fusion Addin inside Fusion
Start the server:
python MCP_Server.py
Then type
/mcp.FusionMCP
Now you will see a list of predetermined Prompts.
Just open Claude, an ask for the FusionMCP
| Tool | Description |
|---|---|
| Draw 2D circle | Draws a 2D circle at a specified position and plane. |
| Ellipsie | Generates an ellipse (elliptical curve) in the sketching plane. |
| Draw lines | Creates a polyline (multiple connected lines) as a sketch. |
| Draw one line | Draws a single line between two 3D points. |
| 3-Point Arc | Draws |