Fusion-Mcp-Server
Verified Safeby KevinZhao-07
Overview
Controls Fusion 360 CAD software directly from Claude Desktop using natural language via the Model Context Protocol (MCP).
Installation
python server.pySecurity Notes
The server architecture involves two local Python servers: an MCP server (`server.py`) communicating with Claude Desktop via stdio, and a Fusion 360 HTTP server (`fusion_http_server.py`) running within Fusion 360 on `localhost:8080`. The Fusion HTTP server is only accessible from the local machine, significantly limiting external attack surface. It directly processes tool commands and parameters received via HTTP POST requests and executes corresponding Fusion 360 API calls. There is no usage of `eval` or direct arbitrary code execution. The primary security risk would be if another process on the local machine could send malicious HTTP requests to `localhost:8080` to manipulate Fusion 360, but the scope of actions is limited to predefined CAD operations. Input validation for parameters is split between the MCP server (absolute validation) and Fusion server (proportional validation, handled by Fusion's API). Overall, given its local-only operation and limited command set, it is reasonably secure.
Similar Servers
mcp-manager
A web GUI to easily manage and configure Model Context Protocol (MCP) servers for the Claude Desktop app on MacOS, generating terminal commands for installation and setup.
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.
vibes
Vibes transforms Claude Desktop into a conversational development environment through distributed MCP servers, allowing users to describe what they want to build and have Claude implement it while teaching them.