返回顶部
o

openclaw-3d-blender-mcpOpenClaw Blender MCP 安装

Instalación completa de Blender MCP para OpenClaw. Incluye setup local/remoto, ngrok, verificación, troubleshooting y estudio de 3 recursos obligatorios (blender-mcp repo, blender-orchestrator, video tutorial).

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
126
下载量
免费
免费
1
收藏
概述
安装方式
版本历史

openclaw-3d-blender-mcp

OpenClaw 3D Blender MCP 技能

使用 OpenClaw 安装、配置和使用 Blender MCP 的完整技能。包含开始创建 3D 角色所需的一切。



⚠️ 第 0 步:学习资源(安装之前)

先学习这 3 个资源(约 40 分钟):

  1. 1. blender-mcp 官方仓库 - https://github.com/ahujasid/blender-mcp(约 15 分钟)
- 官方安装方法、支持的工具、配置说明
  1. 2. blender-orchestrator - https://github.com/mlolson/blender-orchestrator(约 15 分钟)
- 空间推理、真实世界尺寸(55+ 个对象)
  1. 3. 视频:I Made Claude Use Blender - https://www.youtube.com/watch?v=dxlyCPGCvy8(约 10 分钟)
- 完整设置、现场演示、实际案例

为什么要先学习? 避免定位错误,学习相对坐标,查看成功案例。



第 1 步:检查前置条件

bash
python3 --version # 需要 3.10 或更高版本
which uv # 安装:brew install uv(macOS)



第 2 步:选择设置类型

选项 A:本地(同一台电脑)

bash
uvx blender-mcp

配置 MCP:
json
{
mcpServers: {
blender: {
command: uvx,
args: [blender-mcp],
env: {
BLENDER_HOST: localhost,
BLENDER_PORT: 9876,
DISABLE_TELEMETRY: true
}
}
}
}

在 Blender 中安装插件:

  • - 从 https://github.com/ahujasid/blender-mcp 下载
  • Blender:编辑 → 偏好设置 → 插件 → 安装
  • 在视口中按 N → BlenderMCP → 连接

选项 B:远程(不同电脑)

在装有 Blender 的电脑上:
bash
ngrok tcp 9876

保存 URL:tcp://X.tcp.eu.ngrok.io:PORT

在 OpenClaw 中:
json
{
mcpServers: {
blender: {
command: uvx,
args: [blender-mcp],
env: {
BLENDER_HOST: X.tcp.eu.ngrok.io,
BLENDER_PORT: PORT
}
}
}
}



第 3 步:验证连接

bash
python3 scripts/verifyblenderconnection.py

预期输出:

✅ TCP 连接:正常
✅ MCP 已初始化
✅ 已创建立方体 - TESTCUBECONNECTION
✅ 验证完成



第 4 步:检查场景

bash
python3 scripts/getsceneinfo.py

显示:对象总数、名称列表、位置(X,Y,Z)。



🔧 故障排除

错误:Connection refused

解决方法: 检查 ngrok 是否运行,以及 Blender 中的插件是否已连接。

错误:Invalid request parameters

解决方法: 使用正确的 tools/call 格式: python send(tools/call, { name: executeblendercode, arguments: {user_prompt: 描述, code: ...} })

错误:对象位置不正确

解决方法: 使用相对于父级的坐标,而非绝对坐标。

错误:材质不可见

解决方法: 告诉用户按 Z → 材质预览。

📚 包含的资源

  • - scripts/verifyblenderconnection.py - 连接测试
  • scripts/getsceneinfo.py - 场景信息
  • references/coordinatesystem.md - Blender 坐标系统
  • references/commonerrors.md - 10 个常见错误及解决方案

🎯 最佳实践

  • - ✅ 使用相对坐标(基于父级)
  • ✅ 对相关对象应用父子关系
  • ✅ 每次创建后进行检查
  • ✅ 对有机模型使用细分曲面
  • ✅ 经常保存(.blend 文件)

📐 快速坐标参考

Blender 轴: X(右/+),Y(前/+),Z(上/+)

角色在原点:

  • - 脚部:Z 0-3
  • 膝盖:Z 5-8
  • 臀部:Z 8-10
  • 躯干:Z 10-13
  • 肩膀:Z 13-14,X ±1.5
  • 头部:Z 14-17
  • 眼睛:Z 16,Y 1.5

皮克斯风格:

  • - 头部半径:1.4-1.6(真实风格为 1.0)
  • 眼睛半径:0.4(真实风格为 0.2)



版本:1.0.0 | 2026-04-01 | 基于 4 个开发周期(约 90 分钟)

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 openclaw-3d-blender-mcp-1775884143 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 openclaw-3d-blender-mcp-1775884143 技能

通过命令行安装

skillhub install openclaw-3d-blender-mcp-1775884143

下载

⬇ 下载 openclaw-3d-blender-mcp v1.0.0(免费)

文件大小: 29.37 KB | 发布时间: 2026-4-12 10:48

v1.0.0 最新 2026-4-12 10:48
Initial release of openclaw-3d-blender-mcp: Complete Blender MCP setup for OpenClaw.

- Provides detailed installation and configuration steps for both local and remote setups (via ngrok).
- Includes essential troubleshooting, verification scripts, and common error solutions.
- Requires pre-study of 3 key resources: official repository, orchestrator, and setup tutorial video.
- Offers rapid coordinate reference and best practices for creating 3D characters.
- Supplies helper scripts and documentation for scene inspection and coordinate systems.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部