Skip to main content
Glama
mayjack0312
by mayjack0312

eda_pcb_primitive_poured_modify

Modify copper pour fill primitives in the PCB editor. Since these primitives don't support modification, invoking this tool returns undefined with no effect.

Instructions

pcb_PrimitivePoured.modify() -> undefined 修改覆铜填充 remarks: 覆铜填充图元不支持修改,本接口调用将不会有任何效果 returns: undefined

Input Schema

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

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

A3.9/5.0
Behavior5/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It clearly discloses the most important behavioral trait: poured copper fill primitives do not support modification and this call will have no effect. It also states the return value is undefined, preventing false expectations.

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 brief and information-dense, with the API signature, Chinese purpose, and critical no-op caveat each contributing. The formatting is telegraphic but free of filler.

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

Completeness3/5

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

The description fully covers the no-op behavior and return value, which is the most critical fact for an agent. However, it lacks an equivalent alternative, any rationale for the stub, or further parameter detail, leaving an agent without guidance on how to actually accomplish a modification.

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 schema only generically describes args and windowId, but the description's signature `pcb_PrimitivePoured.modify()` hints that no method-specific parameters are needed. The no-effect remark further reduces the importance of args. This adds modest meaning beyond the generic schema, though the official argument order is still not documented.

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 states the target operation ('modify' + poured copper fill primitive) and exposes the underlying API signature. The remark clarifies that the operation is effectively a no-op. It is reasonably specific, though it does not explicitly differentiate itself from sibling eda_pcb_primitive_pour_modify or explain why this separate modify tool exists.

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

Usage Guidelines3/5

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

The remark '本接口调用将不会有任何效果' explicitly warns agents that this call has no effect, which is a useful negative usage guideline. However, it offers no alternative path (such as delete/recreate or pour_modify) and no positive scenario for when this tool should be selected.

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