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
04_quadriflow_remesh.feature•1.81 KiB
Feature: QuadriFlow Remesh
As a retopology artist
I want to generate quad-dominant meshes
So that I can create clean topology for animation and subdivision
Background:
Given the MCP server is running
And the Blender addon is connected
Scenario: QuadriFlow remesh with target face count
Given a manifold mesh with consistent normals is active
When I call quadriflow_remesh with target_faces=5000
Then the result is a quad-dominant mesh
And the face count is approximately 5000
And the tool warns that exact counts are approximate
Scenario: QuadriFlow with sharp edge preservation
Given a mesh with defined sharp edges
When I call quadriflow_remesh with target_faces=3000 and preserve_sharp=true
Then sharp edges are better preserved
And the quad topology flows around hard edges
Scenario: QuadriFlow precondition error on non-manifold mesh
Given a mesh with non-manifold edges
When I call quadriflow_remesh
Then the call fails with a clear error message
And the message describes how to fix the issue
And the message suggests merge doubles, recalc normals, or fill holes
Scenario: QuadriFlow precondition error on inconsistent normals
Given a mesh with inverted normals
When I call quadriflow_remesh
Then the call fails with a precondition error
And the message suggests using "Mesh > Normals > Recalculate Outside"
Scenario Outline: QuadriFlow with different adaptivity settings
Given a manifold mesh is active
When I call quadriflow_remesh with target_faces=<faces> and adaptivity=<adapt>
Then the mesh has <detail_level> in high-curvature areas
Examples:
| faces | adapt | detail_level |
| 5000 | 0.0 | uniform |
| 5000 | 0.5 | moderately_adaptive |
| 5000 | 1.0 | highly_adaptive |