Token导航 LogoToken导航TokenDH.com
研究检索external-serviceunknown未标认证来源可访问许可证需确认审计未展示

blender-3d搅拌机 3d

Agent Skill

blender-3d 用于查找、检索和筛选相关信息,适合在 Local Agent 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,851

周安装

249

下载量

2,435
Local Agent

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:blender-3d(搅拌机 3d)
来源仓库:https://smithery.ai
仓库路径:blender-3d
安装命令:
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

用于查找、检索和筛选相关信息。

  • 适合根据关键词、任务场景或来源线索快速定位候选结果。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • blender-3d 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Blender 3D Skill

This skill enables Claude to interact with Blender for 3D modeling, scene manipulation, material application, and rendering operations through the BlenderMCP addon (ahujasid/blender-mcp - 14k+ stars).

Features

Core Capabilities

  • Two-way communication: Connect Claude AI to Blender through socket server
  • Object manipulation: Create, modify, and delete 3D objects
  • Material control: Apply and modify PBR materials and colors
  • Scene inspection: Get detailed information about the current scene
  • Code execution: Run arbitrary Python code in Blender
  • Viewport screenshots: Capture visual feedback from Blender

Asset Integrations

  • PolyHaven: Download HDRIs, textures, and 3D models
  • Sketchfab: Search and import models from the Sketchfab library
  • Hyper3D Rodin: Generate 3D models from text/images using AI
  • Hunyuan3D: Alternative AI 3D generation from Tencent

Prerequisites

  • Blender 3.0+ (recommended 4.0+)
  • BlenderMCP addon installed and active
  • Socket server running on port 9876 (default)

Docker Installation (Auto-configured)

The addon is automatically installed when building with Dockerfile.unified:

  • Addon installed to ~/.config/blender/{4.0,4.1,4.2}/scripts/addons/
  • Auto-enabled via startup script
  • MCP server available via uvx blender-mcp

Manual Installation

Method 1: Install via Blender UI

  1. Download addon/blender_mcp_addon.py from this skill directory
  2. Open Blender → Edit → Preferences → Add-ons
  3. Click "Install..." and select the addon file
  4. Enable "Blender MCP" in the addon list
  5. Find the BlenderMCP panel in 3D View sidebar (press N)
  6. Click "Start Server" to begin listening on port 9876

Method 2: Copy to Addons Folder

# Linux
cp addon/blender_mcp_addon.py ~/.config/blender/4.0/scripts/addons/

# macOS
cp addon/blender_mcp_addon.py ~/Library/Application\ Support/Blender/4.0/scripts/addons/

# Windows
copy addon\blender_mcp_addon.py %APPDATA%\Blender Foundation\Blender\4.0\scripts\addons\

Method 3: Using the installer script

python3 addon/install-addon.py --blender-version 4.0

Verify Connection

# Test that Blender is listening
nc -zv localhost 9876

# Or send a test command
echo '{"type":"get_scene_info","params":{}}' | nc localhost 9876

MCP Server Setup

Via uvx (recommended)

uvx blender-mcp

Via Python module

python3 -m blender_mcp.server

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "blender": {
      "command": "uvx",
      "args": ["blender-mcp"]
    }
  }
}

Connection Details

  • Host: localhost (configurable via BLENDER_HOST env var)
  • Port: 9876 (configurable via BLENDER_PORT env var)
  • Protocol: TCP with JSON messages
  • Timeout: 180 seconds for long operations

Tool Functions

Scene & Object Management

get_scene_info

Get detailed information about the current Blender scene.

get_object_info

Get detailed information about a specific object.

  • object_name (required): Name of the object

execute_code

Execute arbitrary Python code in Blender.

  • code (required): Python code to execute
  • Note: The command is execute_code, NOT execute_blender_code

get_viewport_screenshot

Capture a screenshot of the current 3D viewport.

  • max_size (optional): Maximum size in pixels (default: 800)

PolyHaven Integration

get_polyhaven_status

Check if PolyHaven integration is enabled.

get_polyhaven_categories

Get available asset categories.

  • asset_type: "hdris" | "textures" | "models" | "all"

search_polyhaven_assets

Search for PolyHaven assets.

  • asset_type: Type of assets to search
  • categories: Optional comma-separated category filter

download_polyhaven_asset

Download and import a PolyHaven asset.

  • asset_id (required): Asset identifier
  • asset_type (required): "hdris" | "textures" | "models"
  • resolution (optional): "1k" | "2k" | "4k" (default: "1k")
  • file_format (optional): File format preference

set_texture

Apply a downloaded texture to an object.

  • object_name (required): Target object
  • texture_id (required): PolyHaven texture ID

Sketchfab Integration

get_sketchfab_status

Check if Sketchfab integration is enabled.

search_sketchfab_models

Search Sketchfab for 3D models.

  • query (required): Search text
  • categories (optional): Category filter
  • count (optional): Max results (default: 20)
  • downloadable (optional): Only downloadable models (default: true)

download_sketchfab_model

Download and import a Sketchfab model.

  • uid (required): Sketchfab model UID

Hyper3D Rodin Integration

get_hyper3d_status

Check if Hyper3D Rodin is enabled.

generate_hyper3d_model_via_text

Generate 3D model from text description.

  • text_prompt (required): Description in English
  • bbox_condition (optional): [Length, Width, Height] ratio

generate_hyper3d_model_via_images

Generate 3D model from reference images.

  • input_image_paths (optional): List of image file paths
  • input_image_urls (optional): List of image URLs
  • bbox_condition (optional): Size ratio

poll_rodin_job_status

Check generation task status.

  • subscription_key: For MAIN_SITE mode
  • request_id: For FAL_AI mode

import_generated_asset

Import completed Hyper3D model.

  • name (required): Object name in scene
  • task_uuid: For MAIN_SITE mode
  • request_id: For FAL_AI mode

Hunyuan3D Integration

get_hunyuan3d_status

Check if Hunyuan3D is enabled.

generate_hunyuan3d_model

Generate 3D model using Hunyuan3D.

  • text_prompt (optional): Text description
  • input_image_url (optional): Reference image URL

poll_hunyuan_job_status

Check Hunyuan3D task status.

  • job_id (required): Job identifier

import_generated_asset_hunyuan

Import completed Hunyuan3D model.

  • name (required): Object name
  • zip_file_url (required): Generated model URL

Examples

Example 1: Create Scene with PolyHaven Assets

Use the Blender skill to:
1. Check PolyHaven status
2. Download an HDRI for environment lighting
3. Download a wood texture
4. Create a cube and apply the wood texture
5. Render the scene

Example 2: Import Sketchfab Model

Search Sketchfab for "vintage car" and import the first downloadable result.
Scale it to fit the scene and position at origin.

Example 3: Generate AI Model with Hyper3D

Generate a 3D model of "a small wooden treasure chest with gold trim"
using Hyper3D Rodin. Import it and add environment lighting.

Example 4: Custom Python Scripting

# Create a grid of cubes with random colors
import bpy
import random

for x in range(-5, 6):
    for y in range(-5, 6):
        bpy.ops.mesh.primitive_cube_add(location=(x*2, y*2, 0))
        obj = bpy.context.active_object
        mat = bpy.data.materials.new(name=f"Mat_{x}_{y}")
        mat.diffuse_color = (random.random(), random.random(), random.random(), 1)
        obj.data.materials.append(mat)

Standalone Server (Headless/Background)

For automated pipelines, use the standalone server instead of the UI addon:

# Start with VNC display (keeps Blender window open)
DISPLAY=:1 blender --python scripts/standalone_server.py

# Or with direct Python call
python3 -c "
import socket
import json

s = socket.socket()
s.connect(('localhost', 9876))

# Import a GLB mesh
request = json.dumps({
    'type': 'import_model',
    'params': {'filepath': '/path/to/mesh.glb', 'name': 'MyModel'}
})
s.sendall(request.encode())
print(s.recv(4096).decode())
s.close()
"

Standalone Server Commands

CommandDescription
get_scene_infoGet scene details and object list
get_object_infoGet specific object properties
execute_blender_codeRun arbitrary Python code
import_modelImport GLB/OBJ/FBX/STL/PLY files
renderRender to image file
orbit_renderRender from multiple orbit angles
set_cameraPosition camera at location/target
add_hdriAdd HDRI environment lighting

Integration with Other Skills

Works well with:

  • comfyui skill for text-to-3D model generation and validation
  • filesystem skill for managing output files
  • imagemagick skill for post-processing renders

ComfyUI 3D Integration (FLUX2 → SAM3D → Blender)

The Blender skill is the final validation step in the ComfyUI text-to-3D pipeline:

  1. FLUX2 generates reference image (Phase 1, ~41GB VRAM)
  2. Free GPU memory via ComfyUI /free endpoint
  3. SAM3D reconstructs mesh.glb from image (Phase 2, ~23GB VRAM)
  4. Blender imports the mesh via MCP socket
  5. Validation renders from multiple orbit camera angles
  6. Quality feedback determines if retry needed with improved prompt

GPU Memory Management

Critical: FLUX2 and SAM3D cannot run concurrently on most GPUs. Use split workflow:

# After FLUX2 generation, free GPU memory before SAM3D
curl -X POST http://comfyui:8188/free \
  -H "Content-Type: application/json" \
  -d '{"unload_models": true, "free_memory": true}'

Example End-to-End Workflow

import requests
import json
import socket
import time

COMFYUI_URL = "http://192.168.0.51:8188"

# Phase 1: FLUX2 Image Generation
flux2_workflow = {
    "86": {"inputs": {"unet_name": "flux2_dev_fp8mixed.safetensors"}, "class_type": "UNETLoader"},
    # ... rest of FLUX2 workflow
}
response = requests.post(f"{COMFYUI_URL}/prompt", json={"prompt": flux2_workflow})
prompt_id = response.json()["prompt_id"]

# Wait for completion
while True:
    history = requests.get(f"{COMFYUI_URL}/history/{prompt_id}").json()
    if history.get(prompt_id, {}).get("status", {}).get("completed"):
        break
    time.sleep(5)

# Free GPU memory
requests.post(f"{COMFYUI_URL}/free", json={"unload_models": True, "free_memory": True})

# Phase 2: SAM3D Reconstruction
sam3d_workflow = {
    "44": {"inputs": {"model_tag": "hf"}, "class_type": "LoadSAM3DModel"},
    # ... rest of SAM3D workflow
}
response = requests.post(f"{COMFYUI_URL}/prompt", json={"prompt": sam3d_workflow})

# Phase 3: Blender Import and Validation
s = socket.socket()
s.connect(('localhost', 9876))
s.sendall(json.dumps({
    "type": "import_model",
    "params": {"filepath": "/path/to/mesh.glb", "name": "GeneratedModel"}
}).encode())
print(s.recv(4096).decode())

# Orbit render for validation - render to ComfyUI output for visibility
s.sendall(json.dumps({
    "type": "orbit_render",
    "params": {
        "output_dir": "/root/ComfyUI/output/validation",  # ComfyUI output
        "prefix": "blender_validation",
        "angles": [0, 45, 90, 135, 180, 225, 270, 315],
        "elevation": 30,
        "resolution": 512
    }
}).encode())
print(s.recv(4096).decode())
s.close()

Copying Renders to ComfyUI Output

For visibility in the ComfyUI web interface, render directly to the ComfyUI output directory:

# If BlenderMCP is inside Docker with shared volumes:
output_dir = "/root/ComfyUI/output/validation"

# If Blender is on host, copy after rendering:
import shutil
import subprocess

# Copy from local to ComfyUI container
subprocess.run([
    "docker", "cp",
    "/tmp/validation/.",
    "comfyui:/root/ComfyUI/output/validation/"
])

Or use docker exec to copy within the container network:

# Copy renders to ComfyUI output (from host)
docker cp /tmp/validation/. comfyui:/root/ComfyUI/output/validation/

# Or if both are containers in same network:
docker exec comfyui mkdir -p /root/ComfyUI/output/validation
docker cp blender:/tmp/renders/. comfyui:/root/ComfyUI/output/validation/

Performance Notes

  • Object creation: < 100ms
  • Material application: < 50ms
  • Asset downloads: varies by size (seconds to minutes)
  • AI generation (Hyper3D/Hunyuan): 30s - 5min depending on complexity
  • Render operations: varies by complexity

Error Handling

The skill handles:

  • Blender not running (connection refused)
  • Invalid object names (suggests alternatives)
  • Script execution errors (returns Python traceback)
  • Render failures (provides diagnostic info)
  • API rate limits (PolyHaven, Sketchfab)
  • AI generation failures (timeout, quota)

Advanced: Asset Strategy

Recommended priority for creating 3D content:

  1. Specific existing objects: Sketchfab → PolyHaven
  2. Generic objects/furniture: PolyHaven → Sketchfab
  3. Custom/unique items: Hyper3D Rodin → Hunyuan3D
  4. Environment lighting: PolyHaven HDRIs
  5. Materials/textures: PolyHaven textures
  6. Fallback: Python scripting for primitives

Troubleshooting

Connection Issues

# Check if Blender addon server is running
nc -zv localhost 9876

# Restart Blender and enable addon
# Look for BlenderMCP panel in sidebar (press N)

API Key Configuration

For Sketchfab and Hyper3D features, configure API keys in the BlenderMCP addon panel within Blender.

Display Issues

Ensure VNC is connected for visual feedback:

# Check VNC status
vncserver -list

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Local Agent

91.03%
按下载量换算2,217

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills