Skip to main content
Glama
mayjack0312
by mayjack0312

eda_sch_manufacture_data_get_bom_template_file

Retrieve a Bill of Materials (BOM) template file for manufacturing data in EasyEDA Pro.

Instructions

sch_ManufactureData.getBomTemplateFile(template: string) -> Promise<File | undefined> 获取 BOM 模板文件 returns: BOM 模板文件

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
argsNo按官方签名顺序排列的JSON参数数组
windowIdNo目标EDA窗口ID;省略时使用当前活动窗口

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

D1.7/5.0
Behavior2/5

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

With no annotations provided, the description must carry the full burden of behavioral disclosure. It only states the signature and that it returns a File or undefined. It does not disclose whether the operation is read-only, what side effects might occur (e.g., downloads, file system access), or any error conditions. The return type is useful but insufficient for an agent to anticipate behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely brief (a single function signature and a one-line Chinese phrase), but brevity without substance does not earn a high conciseness score. It lacks a clear structure: there is no front-loaded summary of purpose, no usage context, and no parameter explanation. It is under-specified rather than efficiently concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool that takes a required template parameter and returns a file, the description is completely inadequate. It does not explain what a BOM template is, how to obtain valid template identifiers, what the returned File object represents (e.g., content, format), or any context about the manufacturing data domain. With no annotations and no output schema, the description fails to provide the necessary context for an agent to invoke the tool 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 input schema has 100% coverage as both parameters have generic descriptions ('JSON parameter array in official signature order' and 'target EDA window ID'), but these do not reveal the semantic meaning of the 'template' argument. The description adds no explanation of what the template string should be (e.g., a template name, ID, or UUID). Thus, the description does not enrich the parameter semantics beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states '获取 BOM 模板文件' (Get BOM template file), which is essentially a restatement of the tool name. It does not explain what a BOM template file is, nor does it distinguish this tool from siblings like eda_sch_manufacture_data_get_bom_templates (which likely lists available templates) or eda_sch_manufacture_data_get_bom_file (which likely gets the actual BOM file). The verb 'get' and resource are present but vague, so purposes remains superficial.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines1/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. The description does not mention that the 'template' parameter likely refers to a template identifier from get_bom_templates, nor does it instruct when it is appropriate to call this method. There is no mention of prerequisites, such as having an active schematic document, or exclusions for similar tools.

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