Skip to main content
Glama
mayjack0312
by mayjack0312

eda_pcb_primitive_polyline_delete

Delete one or more polyline primitives from the PCB layout in the target EDA window to remove unwanted lines or clear design elements. Specify polyline IDs and optionally a window; returns success status.

Instructions

pcb_PrimitivePolyline.delete(primitiveIds: string | IPCB_PrimitivePolyline | Array | Array) -> Promise 删除折线 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.8/5.0
Behavior2/5

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

No annotations are provided, so the description must disclose behavior. It only states the return type (boolean for success) and the operation, but omits side effects, irreversibility, or error conditions. For a delete operation, this is insufficient.

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

Conciseness3/5

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

The description is very brief, consisting of a single line with the signature and a Chinese phrase. It is concise but lacks structure or additional context. The information is front-loaded but minimal.

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?

The description is incomplete for an agent to call it correctly. It does not mention the windowId parameter (though in schema), how to obtain primitiveIds, what happens if the polyline does not exist, or any error handling. No output schema exists to clarify returns. The description leaves critical gaps.

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?

The description includes the function signature, which specifies the parameter 'primitiveIds' and its accepted types. However, the schema provides no details for the args array items, and the description does not explain how to construct the array or what the primitiveIds represent beyond the type. This partial info is helpful but not complete.

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 (delete) and the resource (polyline) via '删除折线' (delete polyline). The name and signature reinforce this. However, it does not explicitly differentiate from sibling delete tools for other primitive types, though the name makes it clear.

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. There is no mention of prerequisites, context, or exclusions. The description only states the action without any usage context.

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