fusion-mcp-bridge

fusion-mcp-bridge is a skill for Claude Code from Ed3Design/ed3design-engineering-bundles. It costs 204 tokens per session (3,589 once invoked), scanned A, original, MIT.

A guide for controlling Autodesk Fusion 360 through a local bridge that accepts Python scripts over HTTP. The bridge runs inside Fusion 360 and handles tasks such as executing scripts, checking health, and taking screenshots.

In plain words
What is it for?
Use it when scripting Fusion 360 through the local MCP bridge, debugging missing geometry changes, checking the bridge, or capturing model screenshots.
Why use it?
Fusion 360’s API can appear to run while making no visible model change, and its event-driven behavior has setup requirements. The guide documents patterns for avoiding those failures and recovering from a stuck bridge.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code.

Part of the cad-design plugin — 5 skills shipped together

Good fit Use it when scripting Fusion 360 through the local MCP bridge, debugging missing geometry changes, checking the bridge, or capturing model screenshots.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ed3design/ed3design-engineering-bundles/fusion-mcp-bridge
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Ed3Design/ed3design-engineering-bundles --skill fusion-mcp-bridge
Clone the repo
git clone --depth 1 https://github.com/Ed3Design/ed3design-engineering-bundles

Made for: Claude Code.

Or install cad-design, the plugin that ships this one along with the rest of its 5 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for fusion-mcp-bridge

README.md
[![agentmods](https://agentmods.dev/badge/skills/ed3design/ed3design-engineering-bundles/fusion-mcp-bridge/github.svg)](https://agentmods.dev/skills/ed3design/ed3design-engineering-bundles/fusion-mcp-bridge)
Your own site
<a href="https://agentmods.dev/skills/ed3design/ed3design-engineering-bundles/fusion-mcp-bridge"><img src="https://agentmods.dev/badge/skills/ed3design/ed3design-engineering-bundles/fusion-mcp-bridge/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for fusion-mcp-bridge

Your own site · 80×15
<a href="https://agentmods.dev/skills/ed3design/ed3design-engineering-bundles/fusion-mcp-bridge"><img src="https://agentmods.dev/badge/skills/ed3design/ed3design-engineering-bundles/fusion-mcp-bridge.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 204 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,589 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00204 $0.03589
Opus 5 $0.00102 $0.01795
Sonnet 5 $0.00041 $0.00718
Haiku 4.5 $0.00020 $0.00359

Measured 10d ago against content hash cbc748abf9f6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

fusion-mcp-bridge scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

Use when driving Fusion 360 from Claude Code through the local MCP-Bridge (HTTP server on 127.0.0.1:7654 with bearer-token auth, single-threaded Custom-Event handler). Covers the API quirks that consistently bite without
cad-design/skills/fusion-mcp-bridge/SKILL.md · 280 lines

How it starts

The opening of the file, as written. The whole thing — 280 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Fusion 360 via MCP-Bridge

A localhost HTTP bridge between Claude and Fusion 360, plus the small fusion CLI that wraps it. This skill documents the API patterns that recurrently fail without explicit guidance.

When to use

  • Driving Fusion 360 geometry from a Claude session through the MCP-Bridge
  • Writing Python scripts that will be executed via /execute against the bridge
  • Debugging why a build script "ran" but produced no visible geometry change (silent-failure patterns)
  • Recovering from a hung or unresponsive bridge

When NOT to use

  • General Fusion modelling discussion → cad-construction
  • General Python CAD scripting (OpenSCAD, FreeCAD) → cad-api-scripting
  • Manufacturing or wall-thickness rules → mechanical-design-principles
  • Brainstorming a design (no CAD work yet) → design-first-iteration

Setup

The bridge is a Fusion AddIn (<your-projects>/fusion360-mcp-bridge/fusion-addin/) that exposes three HTTP endpoints on 127.0.0.1:7654:

  • GET /health — bridge alive + active document info
  • POST /execute — body {"script": "<python>"} runs script in Fusion, returns {"result": "<stdout>"}
  • POST /screenshot — body {"direction": "<dir>", "width": w, "height": h} returns {"screenshot": "<base64-png>"}

Bearer token from ~/.fusion-mcp-secret is required on all endpoints.

The fusion CLI wraps these endpoints. Always prefer the CLI over raw curl — it's shorter, error-handled, and consistent. Curl examples in this skill are fallbacks for when the CLI is unavailable.

fusion check                           # pre-flight
fusion run /tmp/build.py               # execute a script
fusion eval "print(1+1)"               # inline expression
fusion screenshot --direction front --out f.png
fusion components                      # list components + volumes
fusion volume "Hauptgehaeuse"          # specific body volume

Pre-flight protocol

Before every Fusion build session, run:

fusion check

This confirms: bridge alive, bearer token loaded, active document with a Design product. If any of these fail, the bridge will hang or scripts will silently no-op — fix the prerequisite first.

Read the full file on GitHub · 280 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 280 lines · 204 tokens per session scan A cbc748abf9f6

Subscribe to this mod's changes

fusion-mcp-bridge is a skill published in the GitHub repository Ed3Design/ed3design-engineering-bundles (2 stars, last pushed 1mo ago), licensed MIT. It adds 204 tokens to every session and 3,589 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

design-system

Creates the Tamagui brand system for an Expo/React Native Power Apps mobile app, including design-system.md, tokens.ts, and an HTML gallery.

microsoft/power-platform-skills · 34 tokens

canvas-app

Creates or edits a Power Apps Canvas App through the Canvas Authoring MCP coauthoring session. Handles new app generation, direct targeted edits, complex multi-screen changes, responsive layout, per-screen self-QA, and compile-error convergence. Trigger on requests to create, build, generate, modify, update, change…

microsoft/power-platform-skills · 79 tokens

aesthetic-instrument

A committed aesthetic in the sense of skills/committed-aesthetic/SKILL.md: every rule below is checkable, and every value was read out of the source — packages/board/public/index.html and greatcto-site/styles.css — rather than chosen to write this document.

avelikiy/great_cto · 106 tokens

committed-aesthetic

How to write — and how to use — a skill that IS one aesthetic rather than a catalogue of them. A catalogue lets an agent pick, and it picks the modal option; a committed aesthetic makes it execute one thing precisely, against rules you can check. Use when a design keeps coming out competent and forgettable, when…

avelikiy/great_cto · 94 tokens

peekaboo

Provides runtime observation and interaction for native macOS interfaces through accessibility state and screenshots. Use when the task depends on visible or interactive state in a running SwiftUI/AppKit app: what is rendered, focused, selected, enabled, reachable through menus/windows/dialogs, or experienced across a…

johnkozaris/jko-claude-plugins · 104 tokens

fec-ui-design

A frontend UI design guide for creating or reviewing product-specific interfaces, including layout, visual style, design systems, interaction states, responsive behavior, charts, and visual quality checks. It adapts the design to the product's users and main task.

bovinphang/frontend-craft · 123 tokens