Skip to main content
Glama
mayjack0312
by mayjack0312

eda_dmt_project_get_all_projects_uuid

Retrieve UUIDs of all projects in EasyEDA Pro, optionally filtered by team, folder, or workspace. Use this to list project identifiers for further operations.

Instructions

dmt_Project.getAllProjectsUuid(teamUuid?: string, folderUuid?: string, workspaceUuid?: string) -> Promise<Array> 获取所有工程的 UUID remarks: 如若指定 teamUuid,则获取指定团队下的所有工程;

如若指定 folderUuid,则获取指定文件夹下的所有工程;

teamUuid、folderUuid 需要且仅允许指定其一,如若都指定则只取 folderUuid;

如若指定 workspaceUuid,则在指定 Workspace 下获取指定团队/文件夹下的所有工程 returns: 工程 UUID 数组

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.6/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 burden. It discloses the mutual exclusivity of teamUuid and folderUuid and the precedence rule, which is valuable. However, it doesn't state that this is a read-only operation, nor does it mention any potential performance implications for large numbers of projects, or that it returns a list of UUID strings only. The description adds some behavior but not full transparency.

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 reasonably concise, using bullet points for the remarks, which improves readability. The signature line is useful. Some redundancy between the signature and the Chinese description, but overall it's efficient. Front-loads the main purpose before details.

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?

The tool is a simple list fetch with optional filters, and the description covers the filter semantics, mutual exclusion, and return type (array of UUIDs). No output schema exists, but the return type is stated in the signature. It's complete enough for an agent to call correctly, though it could mention that workspaceUuid scopes the team/folder, which it does.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema provides placeholder 'args' array and windowId, with no real parameter details. But the description names the actual parameters teamUuid, folderUuid, workspaceUuid and explains their meaning and constraints. This goes beyond the schema, which has 100% coverage but is generic. The description adds the semantics, but could be more detailed on types or examples.

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 clearly states that it retrieves all project UUIDs, with optional filtering by team or folder. The function name and signature also align with this purpose. It is distinguished from siblings like get_project_info and get_current_project_info by explicitly being a bulk fetch of UUIDs, though it doesn't name alternatives.

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

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear usage context: when teamUuid is specified, get projects under that team; when folderUuid specified, under that folder; workspaceUuid further scopes. It also specifies that teamUuid and folderUuid are mutually exclusive, with folderUuid taking precedence if both given. It doesn't explicitly say when not to use it, but the when-to-use is clear enough.

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