← 返回
内容创作

Blender Mcp

Advanced bridge to Blender via MCP. Allows querying scene, creating objects, applying materials, and running custom BPY code in real-time.
基于MCP的Blender高级桥接,支持场景查询、物体创建、材质应用及实时运行自定义BPY代码。
flayzz
内容创作 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 2
Stars
📥 1,589
下载
💾 167
安装
1
版本
#latest

概述

Blender MCP Bridge

This skill connects Forge (blender_agent) directly to a running Blender instance.

Instructions

Cette skill est un Bridge MCP vers Blender. Tu ne dois pas coder la géométrie complexe à la main si un modèle existe.

🛡️ Professional Scripts Library (Standard Operating Procedures)

Avant de coder une solution ad-hoc, vérifie si un script maître existe dans ton dossier scripts/ :

  • camera_rig_master.py : Utilise-le pour créer un rig professionnel (Empty-based) pour des Orbits 360 ou des travellings stables.
  • studio_lighting.py : (À venir) Pour forcer une configuration de lumière standardisée.
  • animation_pro.py : (À venir) Pour appliquer des courbes d'accélération aux objets.

🛠️ Toolbox MCP

Utilise l'outil blender_mcp avec les paramètres suivants :

ToolArgumentDescription
---------
search_sketchfab_modelsquery (ex: "lock mechanism")Trouve des modèles pros sur Sketchfab.
download_sketchfab_modelmodel_idImporte le modèle GLTF/FBX dans la scène.
search_polyhaven_assetsquery, asset_type (hdris)Trouve des éclairages réels.
download_polyhaven_assetasset_idCharge l'HDRI ou la Texture.
execute_codecode (Python BPY)Le couteau suisse (Caméra, Rendu, Save).
get_scene_info(none)Liste les objets présents.

🚀 Workflow Opti pour "L'Expert 3D"

  1. Intelligence Scene : Utilise get_scene_info pour savoir ce qui est déjà là.
  2. Lumière Pro :
    • Trouve un HDRI (PolyHaven) pour les reflets.
    • Ajoute des AREA lights pour sculpter l'objet.
  3. Animation (Exploded View) :

```python

# Exemple de keyframe

obj.location = (0,0,0)

obj.keyframe_insert(data_path="location", frame=1)

obj.location = (1,0,0)

obj.keyframe_insert(data_path="location", frame=40)

```

  1. Final Block (execute_code) :

```python

import bpy

# Rendu Transparent

bpy.context.scene.render.film_transparent = True

# Sauvegarde Master

bpy.ops.wm.save_as_mainfile(filepath="./lock_master.blend")

# Rendu image ou animation

bpy.ops.render.render(write_still=True)

```

🎯 Monitoring

Sois bavard sur tes choix de lumières et d'angles. L'utilisateur veut une scène lumineuse et détaillée.

Usage

Use this skill whenever you need real-time feedback from Blender or complex modeling tasks.

Example:

utilise blender_mcp avec tool="create_object" arguments='{"type": "MESH_CUBE", "name": "HeroBox"}'

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-19 23:00 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

content-creation

Baidu Wenku AIPPT

ide-rea
使用百度文库 AI 智能生成 PPT,自动根据内容选择模板。
★ 66 📥 46,117
content-creation

Humanizer

biostartechnology
消除AI写作痕迹,使文本更自然真实。基于维基百科"AI写作特征"指南,识别并修正夸张象征、宣传用语、肤浅-ing分析、模糊归因、破折号滥用、三项排比、AI词汇、负面平行结构及冗长连接词等模式。
★ 857 📥 199,194
developer-tools

Blender Bpy

flayzz
使用 bpy API 进行 Blender Python 脚本编程,实现场景自动化、程序化建模、批量渲染和物体操作。
★ 0 📥 1,136