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.
npx skills add Ed3Design/ed3design-engineering-bundles --skill fusion-mcp-bridgegit clone --depth 1 https://github.com/Ed3Design/ed3design-engineering-bundlesWrote 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.
[](https://agentmods.dev/skills/ed3design/ed3design-engineering-bundles/fusion-mcp-bridge)<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.
<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>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.
| Model | Per session | Once 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 |
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 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
/executeagainst 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 infoPOST /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.
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.
- 10d ago First seen · 280 lines · 204 tokens per session scan A cbc748abf9f6
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.
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.
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…
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.
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…
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…
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.