Autodesk Fusion 360

v1.0.0Developer Toolsstable

MCP server for autodesk fusion 360 mcp server

autodesk-fusion-360-mcp-servermcpai-integration
Share:
45
Stars
0
Downloads
0
Weekly
0/5

What is Autodesk Fusion 360?

Autodesk Fusion 360 is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to mcp server for autodesk fusion 360 mcp server

MCP server for autodesk fusion 360 mcp server

This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • MCP server for autodesk fusion 360 mcp server

Use Cases

Control Autodesk Fusion 360 from AI agents
Enable AI-assisted 3D design and modeling
LicenseMIT
Languagepython
Versionv1.0.0
UpdatedMay 19, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx autodesk-fusion-360-mcp-server

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Autodesk Fusion 360

Autodesk Fusion 360 MCP Server connects AI assistants directly to Autodesk Fusion 360's modeling environment via a custom add-in, enabling natural language control of 3D CAD operations. The server exposes tools for sketching (circles, lines, arcs, splines), solid modeling (extrude, revolve, sweep, loft), modifications (fillets, shell, patterns), parameter management, and export to STEP and STL formats. Because Fusion 360's API is not thread-safe, the server uses a task-queue architecture to safely execute all operations on Fusion's main UI thread.

Prerequisites

  • Python 3.10 or higher installed
  • Autodesk Fusion 360 installed on Windows or macOS
  • Claude Desktop or VS Code with MCP support
  • uv package manager for running the MCP server (recommended)
  • Git for cloning the repository
1

Clone the repository

Clone the Autodesk-Fusion-360-MCP-Server repository to your local machine.

git clone https://github.com/JustusBraitinger/Autodesk-Fusion-360-MCP-Server.git
cd Autodesk-Fusion-360-MCP-Server
2

Set up the Python environment and install dependencies

Create a virtual environment inside the Server directory and install the required Python packages including the MCP CLI.

cd Server
python -m venv venv
# Windows PowerShell:
.\venv\Scripts\Activate
# macOS/Linux:
source venv/bin/activate
pip install -r requirements.txt
pip install "mcp[cli]"
3

Install the Fusion 360 add-in

Run the provided installer script from the project root to copy the add-in into Fusion 360's add-ins directory.

cd ..
python Install_Addin.py
4

Enable the add-in in Fusion 360

Open Autodesk Fusion 360, go to Tools → Add-Ins → Scripts and Add-Ins, find the installed add-in, and click Run. Leave Fusion 360 open during use.

5

Install and configure the MCP server for Claude Desktop

From the Server directory, use the MCP CLI to install the server so Claude Desktop can discover it.

cd Server
uv run mcp install MCP_Server.py
6

Restart Claude Desktop

Fully quit and reopen Claude Desktop so it loads the newly installed Fusion 360 MCP server.

Autodesk Fusion 360 Examples

Client configuration

Alternative manual Claude Desktop configuration pointing to the local MCP server script.

{
  "mcpServers": {
    "fusion360": {
      "command": "uv",
      "args": [
        "run",
        "--directory",
        "/absolute/path/to/Autodesk-Fusion-360-MCP-Server/Server",
        "MCP_Server.py"
      ]
    }
  }
}

Prompts to try

Example natural language prompts for 3D modeling operations in Fusion 360.

- "Create a cylinder with radius 10mm and height 50mm"
- "Draw a rectangle sketch 100mm by 60mm on the XY plane"
- "Extrude the last sketch by 20mm"
- "Add a 2mm fillet to all edges of the body"
- "Export the current design as a STEP file"

Troubleshooting Autodesk Fusion 360

Operations are queued but never execute in Fusion 360

The Fusion 360 add-in must be actively running. Go to Tools → Add-Ins → Scripts and Add-Ins in Fusion 360 and confirm the add-in shows as running. Click Run if it is stopped.

MCP server cannot connect to Fusion 360

Ensure Fusion 360 is open and the add-in is active before sending commands. The add-in exposes a local HTTP endpoint at 127.0.0.1:8000 that the MCP server connects to.

Install_Addin.py fails with a path error

Run the script from the repository root (not from inside the Server directory). Fusion 360 must be installed in its default location; if it is in a custom path, edit the script's destination path before running.

Frequently Asked Questions about Autodesk Fusion 360

What is Autodesk Fusion 360?

Autodesk Fusion 360 is a Model Context Protocol (MCP) server that mcp server for autodesk fusion 360 mcp server It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Autodesk Fusion 360?

Follow the installation instructions on the Autodesk Fusion 360 GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Autodesk Fusion 360?

Autodesk Fusion 360 works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Autodesk Fusion 360 free to use?

Yes, Autodesk Fusion 360 is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

Browse More Developer Tools MCP Servers

Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "autodesk-fusion-360-mcp-server": { "command": "npx", "args": ["-y", "autodesk-fusion-360-mcp-server"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Autodesk Fusion 360?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides