Skip to main content
Glama
mayjack0312
by mayjack0312

eda_sch_primitive_pin_get_all

Retrieve all pin objects from the active EasyEDA Pro schematic window. Returns an array of pin primitives for further inspection or editing.

Instructions

sch_PrimitivePin.getAll() -> Promise<Array> 获取所有引脚 returns: 引脚图元对象数组

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
argsNo按官方签名顺序排列的JSON参数数组
windowIdNo目标EDA窗口ID;省略时使用当前活动窗口

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are present, so the description carries the full burden. It discloses that the tool returns a Promise of pin primitive objects but does not state whether the operation is read-only, what scope 'all pins' refers to (e.g., current schematic page vs. document), or how the optional windowId affects behavior. These are meaningful gaps for an unannotated 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 compact, with three short statements and no filler. The signature is front-loaded and the return type is clearly indicated, though the structure is slightly fragmented across separate lines.

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?

For a simple getter with no annotations and no output schema, the description is incomplete. It omits the operational scope (which window/document the pins come from), has no guidance on alternatives, and does not describe the shape or properties of the returned ISCH_PrimitivePin objects beyond the type name.

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 description coverage is 100% for the two parameters (args and windowId), so the baseline is 3. The description adds no parameter-level detail beyond the schema; it only shows an empty getAll() signature, which could slightly conflict with the existence of an args array but does not actively mislead.

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

Purpose4/5

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

The description clearly states the action '获取所有引脚' (get all pins) and the return type is given in the signature and returns line. It identifies the specific resource (pin primitives) and distinguishes from sibling get_all tools by specifying the pin type, though it doesn't explicitly differentiate from eda_sch_primitive_pin_get.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives like eda_sch_primitive_pin_get for a single pin or eda_sch_primitive_pin_get_all_primitive_id for ID-only retrieval. The description gives no context for selection among related tools.

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