Skip to main content
Glama
dwgx

Blender Copilot MCP Server

by dwgx

bmesh_operation

Apply precise BMesh operations to meshes: dissolve degenerate geometry, remove doubles, triangulate, recalculate normals, subdivide, solidify, and more—all without operator overhead.

Instructions

Execute precision BMesh operations on a mesh. BMesh provides direct vertex/edge/face manipulation without operator overhead.

Parameters:

  • mesh_name: Target mesh object name

  • operation: One of: "dissolve_degenerate" — remove zero-area faces & zero-length edges "remove_doubles" — merge vertices by distance (params: {"distance": 0.0001}) "triangulate" — convert all faces to triangles "quads_to_tris" — same as triangulate "tris_to_quads" — convert triangles back to quads where possible "recalc_normals" — recalculate normals (outside) "fill_holes" — fill all holes in mesh (params: {"sides": 4}) "subdivide" — subdivide all faces (params: {"cuts": 1, "smooth": 0}) "smooth_vertices" — smooth vertex positions (params: {"factor": 0.5, "repeat": 1}) "symmetrize" — mirror mesh across axis (params: {"direction": "NEGATIVE_X"}) "convex_hull" — create convex hull from vertices "inset_faces" — inset selected faces (params: {"thickness": 0.02}) "extrude_faces" — extrude faces along normals (params: {"distance": 0.1}) "solidify" — add thickness to mesh (params: {"thickness": 0.01}) "wireframe" — convert to wireframe (params: {"thickness": 0.02}) "custom" — run custom BMesh code (params: {"code": "..."})

  • params: JSON parameters for the operation

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
paramsNo{}
mesh_nameYes
operationYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must fully disclose behavior. It mentions 'precision' and 'without operator overhead' but omits important details: whether the tool modifies the mesh in-place, error conditions (e.g., if mesh_name doesn't exist), permission/context requirements, or side effects. The operation descriptions partially cover behavior (e.g., remove_doubles merges vertices) but are insufficient for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with a clear introduction, then a bulleted list of operations. The listing is necessary due to the many variants, but it is somewhat long. It front-loads the main purpose. Minor redundancy: 'quads_to_tris — same as triangulate' could be omitted or merged. Overall efficient for the complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (16+ operations) and the presence of an output schema (reducing need to describe returns), the description covers most required aspects: parameters, operations, and their effects. It lacks prerequisites (e.g., mesh must exist, object selection) and error handling, but overall is sufficiently complete for an experienced user.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 0% description coverage, making the description the sole source of parameter meaning. The description provides detailed explanations for the 'operation' parameter (list of enums with effects and optional params) and specifies the format for 'params' (JSON). mesh_name is self-explanatory. This adds substantial value beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Purpose is clearly stated: 'Execute precision BMesh operations on a mesh'. It specifies the verb (execute), resource (mesh), and context (BMesh direct manipulation without operator overhead). The distinct nature of low-level mesh editing is implicit, distinguishing it from sibling tools like boolean_operation or bevel_edges which are higher-level.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a comprehensive list of specific operations with brief explanations, which guides usage. However, it lacks explicit when-to-use vs alternatives (e.g., merge_by_distance vs remove_doubles). The context is clear but could improve by directly comparing with similar tools in the sibling list.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/dwgx/blender-copilot'

If you have feedback or need assistance with the MCP directory API, please join our Discord server