mcp-blend

mcp-blend

2.5

The MCP-Blender project provides a Model Context Protocol Server designed to connect Blender with Claude AI, enabling prompt-driven 3D modeling and enhanced design capabilities. The server requires specific software and comes with installation instructions for integrating with Blender.

MCP-Blender

MCP Server for Blender

  • Blender MCP Server는 Model Context Protocol로 Blender와 Claude AI에 연결.
  • Claude가 Blender와 직접 상호 작용하고 제어하여
  • 신속하고 자연 기반으로 3D 모델링을 가능하게 하며,
  • Parametric Design, Ralational Design이 가능하도록 합니다. (향후 Blender외 CATIA, SoildWorks용 MCP-Server 예정임)

1. Functions

  1. MCP를 사용한 CAD SW인 Blender와 연결
  2. Belnder에서 Model 생성
  3. Blender에서 tempoary code 수행

2. 필요 사항

  1. Blender (3.5이상)
  2. Claude ai
  3. Python (3.10이상)
  4. UV Package

3. 설치 Step #1: UV Package

  1. UV and UVX
pip install uv 
  1. 설치 확인
uv --version
uvx --version 
  1. 설치 경로 확인
  • 만약 가상환경에 설치 되었다면 가능한 Full path를 지정해주는 방법 권장
# 설치 경로 확인 
where uvx 
  1. Repository clone 또는 다운로드하기
git clone https://github.com/piolla/mcp-blend
cd mcp-blend

4. 설치 Step #2 : Blender Add-ons

  1. 'blender_addon.py' download
  2. Blender 실행
  • Edit -> Preferences -> Add-ons -> Inrell Add-on -> blender_addon.py(download위치)
  • -> 'Interface: Blender MCP' checkbox check(Activation)
  • image
  • image

5. 설치 Step #3 : Claude ai

  1. Claude ai open
  2. 파일 -> 설정 -> 개발자 -> 설정 편집 -> 파일 탐색기에서 'claude_desktop_config.json' 파일 수정
  3. claude_desktop_config.json (아래 참조하여 수정 )
{
    "mcpServers":
    {
        "Blender":
        {
            "command": "D:\\Anaconda\\envs\\aria\\Scripts\\uvx.exe",
            "args": ["blender-mcp" ]
        }
    }
}
  1. claude 종료하고 다시 실행하기
  • claude 종료는 파일 메뉴에서 종료
  • claude 실행하여 연결 확인
  • image

제한 사항 및 보안 고려 사항

  • 블렌더 버젼 변경등으로 실행 않될 수 있음. 또한 임의의 Python 코드를 실행할 수 있으며,
  • 잠재적 위험할 수도 있음.
  • 사용하지 않을 경우 블렌더 Edit에서 blender MCP ql 비 활성화 하세요.
  • blender_addon.py는 Siddharth(https://x.com/sidahuj) 님 작성 코드입니다(감사합니다)