Skip to main content
Glama
mayjack0312
by mayjack0312

eda_pcb_manufacture_data_get_test_point_file

Retrieve test point report files (Excel or CSV) from PCB manufacture data to validate coverage and drive fixture design.

Instructions

pcb_ManufactureData.getTestPointFile(fileName?: string, fileType?: 'xlsx' | 'csv') -> Promise<File | 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.3/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral disclosure burden. It does reveal that the return may be `undefined`, that parameters are optional, and that `fileType` is restricted to 'xlsx' | 'csv', which is useful. However, it does not disclose potential errors, what happens when `fileName` is omitted, or whether the file is generated or fetched from existing manufacture data.

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 front-loads the full call signature before the Chinese gloss. There is some redundancy between the signature, '获取测试点报告文件', and the final 'returns' line, but the overall length is appropriate and every key fact is present.

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?

For a simple read-style tool with two optional parameters, the description gives the essential signature and return type. It is incomplete as a standalone guide because it lacks usage context, distinction from sibling manufacture-data file tools, default behavior when `fileName` is omitted, and any error or edge-case behavior.

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 description's signature adds real value beyond the generic input schema by naming the parameters (`fileName`, `fileType`), marking them optional, and specifying allowed fileType values. The schema only documents a generic `args` array and `windowId`, so this parameter-level information is essential and mostly complete.

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 explicitly states a specific verb-resource pair: 'getTestPointFile' / '获取测试点报告文件' (get test point report file), and includes the return type. It is clear enough to distinguish from most sibling tools by name and resource, though it does not explicitly contrast it with the many other `eda_pcb_manufacture_data_get_*_file` tools.

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 get_flying_probe_test_file or get_gerber_file. The description only states what the function does, leaving the agent to infer selection from the resource 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