MCP.so
登录

Fusion 360 MCP Server

@ArchimedesCrypto

关于 Fusion 360 MCP Server

暂无概览

基本信息

分类

其他

许可证

MIT license

运行时

python

传输方式

stdio

发布者

ArchimedesCrypto

配置

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

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

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is Fusion 360 MCP Server?

A Model Context Protocol (MCP) server that bridges Cline and Autodesk Fusion 360, exposing Fusion toolbar-level commands as callable tools that generate Python scripts for execution in Fusion 360.

How to use Fusion 360 MCP Server?

Clone the repository, install dependencies, then run python main.py in the src directory to start the HTTP server (default http://127.0.0.1:8000) or python main.py --mcp for MCP mode. Add the server to Cline’s MCP settings via the provided JSON configuration. Use the /tools, /call_tool, and /call_tools API endpoints to list and invoke tools.

Key features of Fusion 360 MCP Server

  • Exposes Fusion 360 toolbar commands as MCP tools
  • Generates ready-to-run Python scripts for Fusion 360
  • Supports single-tool and multi-tool sequential calls
  • Integrates directly with Cline for natural language modeling
  • Tool definitions stored in a configurable JSON registry

Use cases of Fusion 360 MCP Server

  • Automating parametric 3D modeling from natural language prompts
  • Generating Fusion 360 scripts for batch operations
  • Enabling AI-assisted CAD design via Cline
  • Extending Fusion 360’s scripting capabilities with a tool-based API

FAQ from Fusion 360 MCP Server

What are the prerequisites to run the server?

Python 3.9 or higher and Autodesk Fusion 360 must be installed.

How do I start the server in MCP mode for Cline integration?

Run python main.py --mcp from the src directory and configure the server in Cline’s MCP settings using the JSON snippet provided in the README.

What Fusion 360 tools are currently available?

Available tools include CreateSketch, DrawRectangle, DrawCircle, Extrude, Revolve, Fillet, Chamfer, Shell, Combine, and ExportBody.

How do I add a new tool to the server?

Add a tool definition to src/tool_registry.json, add a script template to SCRIPT_TEMPLATES in src/script_generator.py, and update parameter processing logic in the same file.

How does the server generate scripts?

Each tool call produces a Python script that can be executed in Fusion 360’s Script Editor, with an example shown in the README.

评论

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