Skip to main content
Glama
mayjack0312
by mayjack0312

eda_pcb_manufacture_data_get_ipc_d356_afile

Get the IPC-D-356A netlist file for a PCB design, providing the connectivity data required for manufacturing and electrical testing.

Instructions

pcb_ManufactureData.getIpcD356AFile(fileName?: string) -> Promise<File | undefined> 获取 IPC-D-356A 文件 returns: IPC-D-356A 文件数据

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.6/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It only mentions the return type (Promise<File | undefined>) but does not explain side effects, permissions, or what happens if the file is missing. For a retrieval operation, this is minimal coverage.

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 extremely short, consisting of the signature and a one-line Chinese description. While concise, it lacks structured sections and front-loaded key details. It is not verbose, but it under-specifies rather than being efficiently concise.

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?

There is no output schema and no annotations. The description does not explain what IPC-D-356A is, the format of the returned File, or any context about when this file is needed. For a tool with a specific file format, this is incomplete for an agent to use correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description mentions fileName?: string, but the schema uses an 'args' array and 'windowId'. It does not clarify how fileName maps into the args array or its order. Schema coverage is effectively low for the functional parameter, and the description adds little beyond repeating the signature.

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 tool retrieves an IPC-D-356A file, which is a specific resource type. The verb 'get' and resource are clear, and the name itself differentiates it from other get_*_file siblings. However, it doesn't explicitly contrast with similar tools like get_gerber_file or get_bom_file, so it's slightly lacking in differentiation.

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 the many sibling file-getting tools. The description simply says 'get IPC-D-356A file' without explaining scenarios or prerequisites, leaving the agent to infer from the name alone.

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