We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ShirshovDIM/retopoflow_blender_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•378 B
# Blender MCP Addon wrapper
# This file allows the addon to be loaded from Blender's scripts path
import sys
import os
# Add the blender-mcp repo to sys.path so 'src' module can be found
BLENDER_MCP_REPO = r"D:\repos\blender-mcp"
if BLENDER_MCP_REPO not in sys.path:
sys.path.insert(0, BLENDER_MCP_REPO)
# Import everything from the main addon module
from addon import *