Skip to main content
Glama
mayjack0312
by mayjack0312

eda_dmt_project_get_project_info

Retrieve project properties by UUID from EasyEDA Pro. Returns brief project details or undefined when the project cannot be found.

Instructions

dmt_Project.getProjectInfo(projectUuid: string) -> Promise<IDMT_BriefProjectItem | undefined> 获取工程属性 returns: 简略的工程属性,如若为 undefined 则获取失败

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?

With no annotations, the description itself must disclose behavior. It states the return type is a Promise resolving to a brief project item or undefined when retrieval fails, which is meaningful. However, it does not discuss side effects, permissions, or the meaning of 'brief' beyond the name, leaving some burden unmet.

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: a signature, a one-line purpose statement, and a return/error note. Nothing is wasted, though there is mild redundancy between the English signature and the Chinese explanation.

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?

The description conveys the core call and what it returns/fails with, but it does not differentiate from the current-project getter or describe the fields of IDMT_BriefProjectItem despite there being no output schema. This is adequate for a simple getter but not complete.

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 only describes generic args and windowId wrappers, so the included signature adds real semantics: the actual parameter is projectUuid as a string. This compensates for the schema's lack of detail about the positional argument.

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 operation clearly: obtaining project properties via a project UUID, with the API signature shown. It is distinct from the sibling get_current_project_info because it is keyed by a UUID, though it does not explicitly name that sibling.

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 signature implies the tool should be used when a projectUuid is available, but there is no explicit guidance about when to prefer this over get_current_project_info, get_all_projects_uuid, or other project-related tools. No alternatives or exclusions are mentioned.

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