fusion-360-mcp-server
Verified Safeby perkovicluka
Overview
This project links an MCP client (e.g., ChatGPT, Claude, etc.) to Autodesk Fusion 360 through a lightweight MCP server and a Fusion Python add-in for automated CAD design.
Installation
cd server && . .venv/bin/activate && python mcp_server.pySecurity Notes
The FastMCP server binds to `0.0.0.0:8000` via HTTP, making it accessible from any network interface without authentication or encryption. This could expose the server to the local network. Communication between the MCP server and Fusion add-in uses plain JSON over TCP on `127.0.0.1:8765`, lacking encryption for local traffic. No hardcoded secrets or 'eval' statements were found. Input validation within FusionMCP.py primarily relies on type casting (float, int) which is generally safe, with broad exception handling catching runtime errors.
Similar Servers
Fusion-360-MCP-Server
Enables AI agents to control Autodesk Fusion 360 through its API, execute Python code directly within Fusion, and integrate with other Model Context Protocol (MCP) tools.
Autodesk-Fusion-360-MCP-Server
Integrates AI assistants with Autodesk Fusion 360 via the Model Context Protocol (MCP) to enable conversational CAD, AI-driven automation, and parametric control for 3D modeling.
claude-faf-mcp
Optimizes AI understanding of software projects by providing persistent context, fixing context-drift, and enabling bi-directional synchronization between project metadata and AI documentation.
freecad-addon-robust-mcp-server
Enables AI assistants to integrate with FreeCAD for assisted development and debugging of 3D models, macros, and workbenches, supporting various CAD operations and environment introspection.