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.

コメント

「その他」の他のコンテンツ