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•475 B
"""
MCP Prompts
This package contains guided workflow prompts for various Blender tasks.
Prompts provide step-by-step guidance to users.
DO NOT define prompts directly in server.py - define them here and import.
Structure:
- retopo.py: Retopology workflow guidance
- asset_creation.py: Asset creation strategy
"""
from .retopo import retopo_pipeline
from .asset_creation import asset_creation_strategy
__all__ = [
'retopo_pipeline',
'asset_creation_strategy',
]