Skip to main content
Glama
mayjack0312
by mayjack0312

eda_pcb_manufacture_data_get_ipc2581_cfile

Get IPC-2581C manufacturing data file for PCB, specifying file type, unit, and OEM number to meet fabrication requirements.

Instructions

pcb_ManufactureData.getIpc2581CFile(fileName?: string, fileType?: 'xml' | 'cvg' | '2581', unit?: ESYS_Unit.INCH | ESYS_Unit.MILLIMETER, oemNumber?: 'Device' | 'Manufacturer Part' | 'Supplier Part' | 'Comment') -> Promise<File | undefined> 获取 IPC-2581C 文件 returns: IPC-2581C 文件数据

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.3/5.0
Behavior3/5

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

No annotations are present, so the description carries the burden of behavioral disclosure. It does add a Promise<File | undefined> return and explicitly says the result is IPC-2581C file data, which is useful. However, it does not state whether the operation is read-only, whether an active PCB document is required, or how failures beyond 'undefined' behave.

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 and starts with the exact function signature, which is the most useful information. The two short Chinese lines are partly redundant with the signature but add no real bloat, keeping the overall description efficient.

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?

Given no annotations and no output schema, the description gives enough to identify parameters and return type but lacks context about when to invoke the tool, what file the data is generated from, and how optional parameters like fileName or unit affect output. An agent could call it from the signature alone, but important situational guidance is missing.

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 only exposes generic `args` and `windowId`, so the signature in the description is the only source for the actual parameters. It names all four parameters, marks optionality, and lists enum-like allowed values for fileType, unit, and oemNumber. The schema's note that args follow the official signature order helps, though deeper semantics of each parameter are still not explained.

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 '获取 IPC-2581C 文件' (get IPC-2581C file) and includes the full function signature with a File return type, making the verb and resource specific. It does not explicitly distinguish itself from the many sibling get_*_file tools beyond the unique format name, so it falls short of a 5.

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 like eda_pcb_manufacture_data_get_gerber_file or get_bom_file. No prerequisites, no mention of the current PCB context, and no explicit exclusions are provided, so the agent must rely on the tool name and infer usage.

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