Skip to main content
Glama
hjbaard

SolidWorks-MCP

by hjbaard

list_edges

Retrieve edge indices and types for a SolidWorks part, with line details, to target specific edges for fillets or chamfers.

Instructions

List the part's edges (index, type; lines give axis/length/midpoint).

Use the index with add_fillet/add_chamfer edges="2,5" to target specific edges.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.0

TDQS

A4.5/5.0
Behavior4/5

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

No annotations are provided, so the description carries the behavioral disclosure burden. It discloses the output structure and implies a read-only operation through the verb 'List'. It does not discuss units or ordering, but for a simple edge-listing tool the provided output details are sufficient.

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?

The description is two sentences with no filler. The first sentence states the core function and output, and the second adds actionable cross-tool guidance. Every sentence earns its place.

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

Completeness5/5

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

For a zero-parameter listing tool with no output schema, the description is complete: it states what is returned and how to use the result. An agent has enough information to call the tool and apply the output correctly.

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

Parameters4/5

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

The input schema is empty, so there are no parameters to document; the baseline of 4 applies. The description adds value by explaining the output fields and how the edge index should be used in subsequent fillet/chamfer operations.

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?

The description opens with a specific verb and resource: 'List the part's edges'. It also details the output (index, type; lines give axis/length/midpoint), which clearly distinguishes it from sibling tools like list_faces. An agent can immediately understand what this tool returns and how it differs from related list operations.

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 explicitly explains how to use the returned edge indices with add_fillet/add_chamfer, giving concrete downstream usage. It does not explicitly mention alternatives or when not to use this tool, but the resource scope and output purpose make the appropriate context clear.

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