Skip to main content
Glama
mayjack0312
by mayjack0312

eda_dmt_project_open_project

Open an EasyEDA Pro project by its UUID, replacing the current project. Unsaved changes are discarded.

Instructions

dmt_Project.openProject(projectUuid: string) -> Promise 打开工程 remarks: 本操作将会在 EDA 前端打开指定工程,如若原先已打开其它工程且有未保存的变更,执行本操作将直接丢失所有未保存的数据 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

A3.9/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses the key behavioral consequence: opening a project when another is open with unsaved changes will lose all unsaved data. It also notes the return value is a boolean indicating success. This is significant and useful, though it does not mention other side effects like authentication or blocking behavior.

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 relatively concise, containing a signature, a short Chinese label, a crucial remark, and a return note. It is front-loaded with the signature and warning, and does not contain excessive filler. The only minor redundancy is '打开工程' repeating the signature's intent, but it is brief.

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

Completeness4/5

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

For a simple open-project operation with no output schema, the description covers the essential return value (boolean) and the critical data-loss warning. It does not explain the 'windowId' parameter, but the schema covers that. It also does not discuss error handling or invalid UUID cases, but that is not necessary for basic usage. Overall it is adequately 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 has descriptions for both 'args' and 'windowId' (100% coverage), so baseline is 3. The description adds the function signature, clarifying that the 'args' array should contain a 'projectUuid' string. This directly maps the signature parameter to the schema structure, adding meaningful semantics beyond the generic 'JSON parameter array' description.

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

Purpose5/5

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

The description explicitly states 'dmt_Project.openProject(projectUuid: string) -> Promise<boolean>' and '打开工程' (open project), and the remarks clarify it opens the specified project in the EDA frontend. This is a clear, specific verb+resource (open + project) and is distinct from the many project-management siblings (create, delete, get info, etc.).

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 explicit guidance about when to use this tool versus alternatives. The description only states what it does and includes a warning about data loss; it does not mention any exclusions, prerequisites, or alternative tools for similar operations. The intended use is only implied by the name and description.

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