get_topology
Return simplified brep-like topology for a solid to inspect faces, edges, and vertices.
Instructions
Return simplified brep-like topology for a solid.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| solid_id | Yes |
Return simplified brep-like topology for a solid to inspect faces, edges, and vertices.
Return simplified brep-like topology for a solid.
| Name | Required | Description | Default |
|---|---|---|---|
| solid_id | Yes |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description must carry the full behavioral burden. It implies a read operation and mentions 'simplified' topology, but it does not state permissions, side effects, output characteristics, or error behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single front-loaded sentence with no wasted words. However, it is arguably too terse for a tool whose behavior and output are otherwise undocumented.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no annotations, no output schema, and 0% parameter description coverage, the definition should explain much more about what 'simplified brep-like topology' returns and how to use solid_id. The one-sentence description leaves critical gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has one required parameter with 0% description coverage, so the description must compensate. It says only 'for a solid,' which does not add format, source, or expected value information beyond the schema's solid_id field name.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: 'Return simplified brep-like topology for a solid.' That is enough to understand the general operation, but it does not distinguish this tool from sibling topology getters such as get_face_list, get_edge_list, or get_vertex_list.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No when-to-use guidance, prerequisites, or alternatives are provided. The description does not explain when an agent should choose this tool over the many related topology and geometry inspection tools available.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.