We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/xhiroga/blender-mcp-senpai'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•519 B
from importlib import resources
def _abs(file: str) -> str:
# __package__ is like `bl_ext.xhiroga_github_io.blender_senpai.adapters.assets`
return str(resources.files(__package__) / file)
NODE_GROUPS = {
"BLSP.NgonVisualizer": {
"description": "Highlights triangles and polygons with 5 or more vertices in yellow during Viewport Display.",
"file": _abs("visualizer.blend"),
}
}
DESCRIPTIONS = ", ".join(
f"{name}: {value['description']}" for name, value in NODE_GROUPS.items()
)