Skip to main content
Glama

mesh_subdivision_loop_surface

Apply Loop subdivision to triangular 3D meshes, refining geometry while preserving boundary curves and crease weights for continuous normals.

Instructions

Loop subdivision surface refinement for triangular 3D meshes with boundary curve preservation, crease edge weighting, and normal continuity. (0.035 USDC on Base L2)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
payloadYesInput parameters or JSON string payload for the tool execution
paymentSignatureNoBase L2 USDC micropayment signature or transaction hash for x402 settlement

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are present, so the description carries the behavioral burden. It does disclose algorithm-level behaviors (boundary preservation, crease weighting, normal continuity) and the payment cost, which adds context. However, it does not state whether the tool is stateless/read-only, what input formats are accepted, or what the result looks like.

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

Conciseness5/5

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

A single front-loaded sentence plus a cost note. Every element (algorithm, mesh type, preservation features, price) is informative with no redundancy.

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

Completeness2/5

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

This is a complex geometry operation, yet there is no output schema and the payload schema is generic. The description does not specify how to encode the mesh, subdivision level, crease weights, or expected return value, so an agent cannot reliably construct a correct call.

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

Parameters3/5

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

Schema describes both parameters (payload and paymentSignature) with 100% coverage, so the baseline is 3. The tool description adds no parameter-specific semantics beyond hinting at crease weighting and boundary preservation, leaving the payload structure unspecified.

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?

States a specific verb ('refinement') and resource ('triangular 3D meshes') with the exact algorithm ('Loop subdivision'). This clearly differentiates it from sibling mesh tools like mesh_decimate_quadric_simplifier, which perform the opposite operation.

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 gives clear context by specifying the mesh type (triangular) and the operation (subdivision), which implies when it should be used. It does not explicitly name alternatives or say when not to use it, but the scope is unambiguous enough to route an agent correctly.

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

Deploy Server

Other Tools