MCP.so
登录

Fusion 360 MCP Server

@Joe-Spencer

关于 Fusion 360 MCP Server

A model context protocol (MCP) server for Autodesk Fusion that provides resources and tools from ADSK to an AI client such as Claude or Cursor.

基本信息

分类

其他

许可证

GPL-3.0

运行时

python

传输方式

stdio

发布者

Joe-Spencer

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "fusion-mcp-server": {
      "command": "python",
      "args": [
        "install_mcp_for_fusion.py"
      ]
    }
  }
}

工具

3

Display a message box in Fusion 360

Create a new sketch on a specified plane

Create a new parameter with specified values

概览

What is Fusion 360 MCP Server?

Fusion 360 MCP Server is a Model Context Protocol (MCP) server implemented as a Fusion 360 add-in. It allows AI assistants like Claude to access design information, create and modify design elements, and receive context-specific CAD prompts through the MCP protocol.

How to use Fusion 360 MCP Server?

Install the MCP Python SDK in Fusion 360’s Python environment using the included install_mcp_for_fusion.py script or by manually running python -m pip install "mcp[cli]" with Fusion’s Python executable. Then add the MCPserve folder as an add-in in Fusion 360 and run it. Once running, AI assistants can connect to the server via HTTP SSE at http://127.0.0.1:3000/sse or via file‑based communication. Use client.py (e.g., python client.py --test-connection) to verify functionality.

Key features of Fusion 360 MCP Server

  • Exposes Fusion 360 design data as MCP resources
  • Provides tools for message boxes, sketch creation, and parameter management
  • Delivers specialized prompt templates for CAD tasks
  • Supports both HTTP SSE and file‑based communication
  • Runs as a background thread inside Fusion 360
  • Includes a testing client script for validation

Use cases of Fusion 360 MCP Server

  • AI‑assisted exploration of active Fusion 360 designs
  • Automated creation of sketches and user parameters
  • Retrieval of design structure and component details
  • Building CAD‑focused AI workflows with context‑aware prompts

FAQ from Fusion 360 MCP Server

What is the Model Context Protocol (MCP)?

MCP is a protocol that allows AI assistants to interact with external systems—here, to access resources, tools, and prompts within Fusion 360.

What are the requirements to run Fusion 360 MCP Server?

Autodesk Fusion 360 and Python 3.7+ (for installation and testing). The MCP Python SDK must be installed inside Fusion 360’s own Python environment.

How does the server communicate with AI assistants?

It supports two methods: HTTP SSE at http://127.0.0.1:3000/sse and a file‑based backup method using the mcp_comm directory.

What resources and tools are available?

Resources: fusion://active-document-info, fusion://design-structure, fusion://parameters. Tools: message_box, create_new_sketch, create_parameter. Prompts: create_sketch_prompt, parameter_setup_prompt.

Where does the design data live?

All data stays within the active Fusion 360 document. The server only reads or modifies the current design; it does not store or export data externally.

评论

其他 分类下的更多 MCP 服务器