Skip to main content
Glama
mayjack0312
by mayjack0312

eda_pcb_manufacture_data_get_altium_designer_file

Retrieve Altium Designer file data from PCB manufacture outputs for design review or further processing.

Instructions

pcb_ManufactureData.getAltiumDesignerFile(fileName?: string) -> Promise<File | undefined> 获取 Altium Designer 文件 returns: Altium Designer 文件数据

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

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

With no annotations, the description carries the full burden of behavioral disclosure, but it only mentions the return type `File | undefined` and gives no hints about side effects, permissions, required setup, or error behavior. It does not clarify whether the operation is read-only or what happens on failure, leaving an agent uninformed about operational 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 concise and front-loaded with the signature, making it easy to scan. It contains no unnecessary words or repetition. However, its brevity comes at the cost of omitting critical usage and behavioral details, so it is efficient but not comprehensive.

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 low complexity and absence of an output schema, the description still falls short. It does not explain how to structure the `args` array, the relationship between `fileName` and the current board, or what the returned file represents. The lack of parameter semantics and usage guidance makes it insufficient for an agent to invoke correctly without prior knowledge of the API pattern.

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 schema describes `args` as a generic JSON parameter array and `windowId` with a generic description, but does not document individual parameters. The description adds a signature suggesting `fileName` is the first array element, yet it does not explain how to encode it in the array or that it is optional. It also omits any mention of `windowId`, so the agent must infer its role. The description only partially compensates for the schema's lack of detail.

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 tool retrieves an Altium Designer file via the `pcb_ManufactureData.getAltiumDesignerFile` method, using a specific verb and resource. This differentiates it from sibling getters by file type (though it doesn't explicitly name an alternative). The bilingual text is unambiguous about the purpose.

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 like `eda_pcb_manufacture_data_get_gerber_file` or `eda_pcb_manufacture_data_get_bom_file`. There are no stated prerequisites, context, or exclusion criteria. The only implied usage is evident from the tool name, so the description adds no selection value.

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