Skip to main content
Glama
mayjack0312
by mayjack0312

eda_dmt_panel_get_all_panels_info

Retrieve detailed properties for all panels in the project, providing a complete overview for inspection and management.

Instructions

dmt_Panel.getAllPanelsInfo() -> Promise<Array> 获取工程内所有面板的详细属性 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

C2.7/5.0
Behavior2/5

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

There are no annotations provided, so the description must carry the full burden of behavioral disclosure. It mentions it returns a Promise<Array<IDMT_PanelItem>>, which indicates it's a read operation, but it does not clarify whether it accesses the current project or requires a specific window, nor does it mention any side effects or limitations (e.g., performance with many panels).

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 and includes a code-like signature and Chinese text. It is concise but under-specified; the information provided is minimal and does not add much beyond the function signature. It could be more structured by explaining the return format or what 'detailed attributes' means.

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 that there is no output schema and no annotations, the description is incomplete for an agent to know what to expect. It does not describe the shape of the returned array items (IDMT_PanelItem), nor does it mention any prerequisites (e.g., active project). The tool is relatively simple but with no output schema, more detail is needed.

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 schema has 100% coverage, with the 'args' parameter described as a JSON array and 'windowId' described as the target window ID. The description adds no additional parameter semantics, but since the schema already explains them, the baseline is 3; however, the description does imply the tool operates within a project context, which is somewhat helpful. Thus, a 4 is appropriate as the schema is sufficient.

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

Purpose3/5

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

The description states 'getAllPanelsInfo' and explains it retrieves detailed attributes of all panels in the project, which is clear. However, it does not explicitly distinguish it from the sibling 'eda_dmt_panel_get_all_panels_info' with other panel-related getters like 'eda_dmt_panel_get_panel_info' (single panel) or 'eda_dmt_panel_get_current_panel_info'. The purpose is understandable but lacks explicit 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?

The description does not provide any guidance on when to use this tool versus other panel-related tools, such as when to use 'eda_dmt_panel_get_panel_info' for a specific panel or 'eda_dmt_panel_get_current_panel_info' for the current panel. There is no mention of context or alternatives, leaving the agent to infer usage from the name.

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