开源MCP工具 是 AI Skill Hub 本期精选MCP工具之一。综合评分 7.5 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
MCP server for Autodesk Flame — clip control, timelines, and effects with RAG se,提供了Autodesk Flame的MCP功能
开源MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
MCP server for Autodesk Flame — clip control, timelines, and effects with RAG se,提供了Autodesk Flame的MCP功能
开源MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/abrahamADSK/flame-mcp
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"--mcp--": {
"command": "npx",
"args": ["-y", "flame-mcp"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 开源MCP工具 执行以下任务... Claude: [自动调用 开源MCP工具 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"__mcp__": {
"command": "npx",
"args": ["-y", "flame-mcp"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
Control Autodesk Flame with natural language using Claude and the Model Context Protocol (MCP).
[!WARNING] Experimental project — use at your own risk. This is an independent, unofficial experiment created with Claude Code. It is not affiliated with, endorsed by, or officially supported by Autodesk in any way. The Flame name and trademarks belong to Autodesk, Inc. Executing AI-generated code inside a live Flame session carries real risks: unexpected crashes, loss of unsaved work, unintended modifications to projects, sequences, or media. Always work on a duplicate or test project. Never run this on production material without a full backup. The author(s) accept no responsibility for data loss, corruption, or any other damage resulting from its use.
flame-mcp connects Claude to Autodesk Flame via a lightweight Python bridge. Type what you want to do in plain language — Claude translates it into Flame API calls and executes them live.
You: "Delete all reels named TEST from Default Library"
Claude → MCP Server → Unix socket → Flame Python API → Result back to Claude
---
The system has two components:
hooks/flame_mcp_bridge.py — A Flame Python hook that starts a local Unix domain socket server when Flame launches (falls back to TCP port 4444 if AF_UNIX is unavailable). It receives Python code, executes it inside Flame's Python interpreter with full access to the flame module, and returns the result.
src/flame_mcp/server.py — An MCP server that Claude launches. It exposes tools that Claude can call by name, translates natural language into Python code, and communicates with the bridge over the socket.
┌──────────────────┐ MCP (stdio) ┌──────────────────────┐ Unix socket ┌─────────────────┐
│ Claude Code / │ ◄──────────────── │ flame_mcp/server │ ◄──────────── │ Autodesk Flame │
│ Claude Desktop │ ─────────────────►│ (Python, macOS) │ ─────────────► │ Python bridge │
└──────────────────┘ └──────────────────────┘ (TCP fallback) └─────────────────┘
Compatible with Claude Code (terminal), Claude Desktop, and Cowork — all three contexts use the same MCP server and behave identically.
---
python3 --version)npm install -g @anthropic-ai/claude-code)Optional — local / free inference with Ollama: - Ollama >= 0.17.6 installed on your Mac, a Linux GPU server, or both - macOS: brew install ollama && brew services start ollama - Linux: see https://ollama.com/download/linux (systemd) - Verify: ollama --version - Create the qwen3.5-mcp tag (required — AVAILABLE_MODELS in hooks/flame_mcp_bridge.py expects this exact name):
ollama pull qwen3.5:9b
ollama cp qwen3.5:9b qwen3.5-mcp
The bridge forces num_ctx=24576 at runtime via a pre-flight POST to Ollama's native /api/generate endpoint, so a custom Modelfile with PARAMETER num_ctx is not needed — the Anthropic-compat endpoint ignores Modelfile settings anyway. If you want different defaults on num_ctx for some reason, see the advanced Ollama setup below. - See Ollama setup below for backend options
Note on Python versions: The MCP server runs on your system Python (3.11+). Code executed inside Flame uses Flame's bundled Python interpreter (Flame 2026 ships Python 3.11.5; Flame 2027 ships Python 3.13.3).
---
python3 -m venv .venv source .venv/bin/activate pip install -r requirements.txt --no-user
After installing, run the health check to confirm everything is in place:
./install.sh --doctor
This runs a 5-check sweep (venv, dependencies, hook, Claude registration, RAG index) and prints PASS/FAIL/WARN/SKIP with remediation hints for each check. Recommended before first use.
python -m flame_mcp.rag.build_index
sudo cp hooks/flame_mcp_bridge.py /opt/Autodesk/shared/python/
cd ~/flame-mcp
source .venv/bin/activate
python -m flame_mcp.rag.build_index
Three Ollama-based backends are available, covering every scenario:
┌─────────────────┬──────────────────────┬────────────────────────────────────┐
│ Backend │ Physical path │ Use case │
├─────────────────┼──────────────────────┼────────────────────────────────────┤
│ ollama │ Mac → gpu-server LAN │ Best quality, big GPU model │
│ ollama_cloud ☁ │ Mac localhost → ☁ │ Anywhere with internet, no GPU │
│ ollama_mac 🍎 │ Mac localhost │ Offline emergency, no internet │
└─────────────────┴──────────────────────┴────────────────────────────────────┘
ollama_cloud and ollama_mac both require Ollama installed on the Mac — a lightweight daemon (~50 MB, no models bundled) that listens at localhost:11434 and implements the Anthropic Messages API. For cloud models it acts as a transparent proxy to ollama.com; for local models it runs them directly using Mac CPU/GPU.
Ollama was not previously required on the Mac — it only ran on gpu-server. This is a new requirement for the two Mac-based backends.
curl -fsSL https://ollama.com/install.sh | sh
```
---
Best quality. Runs on the Linux workstation (gpu-server) with a dedicated GPU.
On the Linux machine (gpu-server):
```bash
sudo systemctl restart ollama
Free 480B parameter model running on ollama.com's infrastructure. Works anywhere with internet, no GPU required. Requires Ollama on the Mac.
On the Mac (one-time setup):
```bash brew install ollama
Small model stored locally on the Mac. Works with no internet and no gpu-server — useful when working remotely on a laptop.
On the Mac (one-time setup, ~4 GB download):
brew install ollama
ollama serve
ollama pull qwen2.5-coder:7b
In the Flame widget: 1. Select qwen2.5-coder 7B 🍎 from the model dropdown 2. The combo shows · localhost — ready to use offline
Quality is significantly lower than the 30B or 480B models. Runs on Mac CPU (no GPU required); response time is slower than GPU backends.
⚠️ Tool use limitation: 7B models often fail to invoke MCP tools correctly — they may print raw JSON instead of executing the tool call. This backend is best suited for text queries (API questions, code explanations) rather than live Flame control. For actual Flame operations useanthropic,ollama, orollama_cloud.
Every Claude response to a Flame request follows this sequence:
search_flame_docs(query) ← look up correct API patterns
└─ if score < 60%: warn ← pattern may not be documented
execute_python(code) ← run the code in Flame
└─ if score was < 60% and ok:
learn_pattern(desc, code) ← teach the system (self-improvement)
session_stats() ← show token summary
---
Claude can't connect to Flame - Make sure Flame is open - Check MCP Bridge → Status in the Flame menu - Verify flame_mcp_bridge.py is in /opt/Autodesk/shared/python/ - Check the Unix socket exists: ls -la ~/flame-mcp/run/flame_mcp.sock — should be srw------- - If Unix socket is absent, the bridge falls back to TCP; run lsof -i :4444 to confirm Flame is listening
Low RAG relevance scores on common operations - If a pattern scores < 60%, Claude will auto-learn it after a successful run - You can also manually rebuild the index: python -m flame_mcp.rag.build_index
Claude Chat (embedded) doesn't open - Check logs/flame_mcp_bridge.log for error details - Ensure ANTHROPIC_API_KEY is set in your environment or in ~/flame-mcp/.env - Flame 2026+ uses PySide6; older versions use PySide2 (both supported)
Ollama model runs on CPU instead of GPU - Check journalctl -u ollama -n 50 for library=cpu or offloaded 0/N layers - Ensure CUDA is initialised: python3 -c "import ctypes; print(ctypes.CDLL('libcuda.so.1').cuInit(0))" — should return 0; if 999, reboot the Linux machine - Add Ollama's CUDA libs to ldconfig: create /etc/ld.so.conf.d/ollama-cuda.conf with /usr/local/lib/ollama/cuda_v12 and run sudo ldconfig - Set OLLAMA_NEW_ENGINE=true in the systemd override
Ollama model truncates context (truncating input prompt: limit=4096) - The Anthropic-compatible endpoint ignores Modelfile num_ctx — this is expected - The bridge fixes it automatically via a pre-flight /api/generate request; check the bridge log for Ollama pre-load OK - If the issue persists, verify the Modelfile has PARAMETER num_ctx 24576 and the model was created with ollama create
Ollama cloud / mac-local: "Ollama not found on this Mac" - Install and start the Mac daemon: brew install ollama && ollama serve - Verify it's running: curl http://localhost:11434/api/version - For ollama_mac only, also pull the model: ollama pull qwen2.5-coder:7b - For ollama_cloud, log in so the daemon can authenticate: ollama login
Ollama cloud model not responding - The 480B model may take 2–5 minutes on first inference — the widget has a 5-minute watchdog - Check daemon logs: journalctl --user -u ollama (Linux) or ollama serve output (Mac)
Port 4444 is already in use The bridge uses a Unix domain socket by default (~/flame-mcp/run/flame_mcp.sock), so TCP port 4444 is only used as a fallback when AF_UNIX is unavailable. If you still need to change the TCP fallback port, edit BRIDGE_PORT = 4444 in both flame_mcp_bridge.py and src/flame_mcp/server.py. To override the socket path: set FLAME_BRIDGE_SOCKET=/path/to/custom.sock in your environment.
pip install fails with --user conflict Add --no-user to pip commands. Happens when install.user = true is set globally.
---
该项目提供了Autodesk Flame的MCP功能,虽然star数较少,但代码质量较高,值得关注
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
经综合评估,开源MCP工具 在MCP工具赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | flame-mcp |
| 原始描述 | 开源MCP工具:MCP server for Autodesk Flame — clip control, timelines, and effects with RAG se。⭐6 · Python |
| Topics | mcpautodesk-flamechromadbclaudecompositingflame-pythonpython |
| GitHub | https://github.com/abrahamADSK/flame-mcp |
| License | MIT |
| 语言 | Python |
收录时间:2026-05-18 · 更新时间:2026-05-24 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端