π€ Control Fusion 360 with natural language through Claude Desktop using MCP (Model Context Protocol). Create, manipulate and modify 3D objects by simply describing what you want to do. French-localized adaptation of Kanbara Tomonori's original concept.
Config is the same across clients β only the file and path differ.
{
"mcpServers": {
"fusion_mcp": {
"args": [
"YOUR_PATH/fusion-claude-ultimate/server/server.mjs"
],
"command": "node",
"protocol": "stdio",
"description": "Control Fusion 360 via MCP"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that enables Claude Desktop to control Autodesk Fusion 360 through natural language commands. Create, manipulate, and query 3D objects in Fusion 360 by simply describing what you want to do.
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 ai-ml
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Fusion360 Claude Ultimate and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that enables Claude Desktop to control Autodesk Fusion 360 through natural language commands. Create, manipulate, and query 3D objects in Fusion 360 by simply describing what you want to do.
Inspiration: This project is inspired by and adapted from the work of Kanbara Tomonori, Autodesk certified Fusion 360 Expert Elite. This version provides a French-localized and extended implementation of the original MCP Γ Fusion API integration concept.
Claude Desktop ββ> MCP Server (Node.js) ββ> fusion_command.txt
β
Claude Desktop <ββ MCP Server (Node.js) <ββ fusion_response.txt
β
Fusion 360 Add-in (Python)
β
Fusion 360 Application
The MCP server communicates with Fusion 360 through JSON files (~/Documents/fusion_command.txt and ~/Documents/fusion_response.txt). The Fusion 360 add-in polls for new commands every 0.5s and writes responses back.
git clone https://github.com/yourusername/fusion-claude-ultimate.git
cd fusion-claude-ultimate
cd server
npm install
Copy the fusion_script/fusion_mcp_server/ folder to your Fusion 360 add-ins directory:
Windows:
%APPDATA%\Autodesk\Autodesk Fusion 360\API\AddIns\
macOS:
~/Library/Application Support/Autodesk/Autodesk Fusion 360/API/AddIns/
Then in Fusion 360, go to Tools > Add-Ins and enable Fusion MCP Server.
Edit your Claude Desktop configuration file:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Add the following (replace YOUR_PATH with the actual path to the project):
{
"mcpServers": {
"fusion_mcp": {
"command": "node",
"args": ["YOUR_PATH/fusion-claude-ultimate/server/server.mjs"],
"protocol": "stdio",
"description": "Control Fusion 360 via MCP"
}
}
}