Skip to main content
Glama
mayjack0312
by mayjack0312

eda_pcb_primitive_component_create

Create a PCB component primitive by placing a library device onto a specified layer at given coordinates, with optional rotation and lock.

Instructions

pcb_PrimitiveComponent.create(component: { libraryUuid: string; uuid: string } | ILIB_DeviceItem | ILIB_DeviceSearchItem | { libraryType: ELIB_LibraryType.FOOTPRINT; libraryUuid: string; uuid: string } | ILIB_FootprintItem | ILIB_FootprintSearchItem, layer: TPCB_LayersOfComponent, x: number, y: number, rotation?: number, primitiveLock?: boolean) -> Promise<IPCB_PrimitiveComponent | undefined> 创建器件 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

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description carries full responsibility for behavioral disclosure. It mentions the return type (Promise<... | undefined>) but does not state that creation is a mutating operation, whether it requires an active PCB document, the coordinate system used, or any side effects on existing primitives.

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 a compact signature plus a short Chinese translation and return note. Every element carries information, with no filler or repetitive content.

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?

Given the complexity of the component parameter (multiple union types) and the lack of an output schema, the description does not explain required object properties, coordinate units, or behavioral prerequisites. An agent would need additional context to invoke this tool correctly without errors.

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 full TypeScript signature documents all parameters, including optional flags (rotation, primitiveLock) and union types for the component argument, compensating for the generic args-array schema. However, it does not explain the meaning of types like ILIB_DeviceItem or TPCB_LayersOfComponent, so agents must rely on external knowledge.

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 indicates a create operation for a PCB primitive component, with the verb 'create' and resource 'PrimitiveComponent' (器件). It is distinguishable from sibling tools like eda_pcb_primitive_component_modify and eda_pcb_primitive_component_delete, though it doesn't elaborate on what the component represents.

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?

There is no guidance on when to use this tool versus alternatives such as eda_pcb_primitive_component_place_component_with_mouse or eda_pcb_primitive_component_place_footprint_with_mouse. It does not state preconditions, document requirements, or which scenarios favor direct creation.

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