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
42_find_support_loops.feature•1.13 KiB
Feature: Find Support Loops
As a retopology agent
I need to identify edge loops suitable for subdivision support
So that I can maintain sharp edges after subdivision
Background:
Given Blender is running with MCP addon connected
And a mesh object exists in the scene
Scenario: Find loops near sharp edges
Given a mesh with marked sharp edges
When I call find_support_loops with near_sharp True
Then the result should contain candidate edge loops
And loops should be near sharp edge regions
Scenario: Find loops by edge angle
Given a mesh with varying edge angles
When I call find_support_loops with min_angle 30
Then the result should identify loops at angle boundaries
And provide loop indices for selection
Scenario: Suggest support loop placement
Given a mesh without adequate support loops
When I call find_support_loops with suggest True
Then the result should suggest where to add support loops
Scenario: No support loops needed
Given a smooth organic mesh without hard edges
When I call find_support_loops
Then the result should indicate no support loops required