fusion360-mcp-server
Fusion 360 MCP Server is an interface between Cline and Autodesk Fusion 360, allowing for natural language commands to be translated into executable scripts in Fusion 360. It facilitates automation through an MCP server, offering access to a variety of Fusion 360 tools and features.
What is the purpose of the Fusion 360 MCP Server?
The server facilitates the conversion of natural language prompts into Fusion 360 tool actions, generating executable Python scripts for automation.
How do I start the server in MCP mode?
Run the command python main.py --mcp
in the src
directory to start the server in MCP mode.
What are the prerequisites for using the server?
You need Python 3.9 or higher and Autodesk Fusion 360 installed on your system.
How can I extend the server with new tools?
Add new tool definitions to src/tool_registry.json
, update script templates in src/script_generator.py
, and add parameter processing logic.
Where can I find the Fusion 360 API documentation?
The Fusion 360 API documentation is available at Autodesk's official help site, with links provided in the server's documentation section.