Skip to main content
Glama
mayjack0312
by mayjack0312

easyeda_api_call

Call whitelisted EasyEDA Pro API methods by providing method ID and JSON arguments. Automate EDA tasks without writing custom code.

Instructions

调用目录内任一官方EasyEDA Pro API。仅允许自动生成白名单中的方法,不接受任意代码。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
argsNo按官方签名顺序排列的JSON参数数组
methodYes完整方法ID,如 dmt_Project.getCurrentProjectInfo
windowIdNo目标EDA窗口ID;省略时使用当前活动窗口

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral disclosure burden. It does disclose one meaningful trait — the tool is a constrained bridge that rejects arbitrary code and only accepts auto-generated whitelist methods — which frames it as a safe, restricted dispatcher. However, it says nothing about validation failure behavior, error responses, or side effects, which matters for a no-annotation tool.

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

Conciseness5/5

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

Two short sentences with zero wasted words. The action is front-loaded first and the safety constraint follows immediately; every clause earns its place.

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?

For a generic dispatcher spanning a huge API catalog with no output schema and no annotations, the description is too thin. It never tells the agent where the whitelist comes from, how to discover valid method IDs, or what happens for an unlisted method; given that siblings like easyeda_api_catalog and easyeda_api_describe exist, the lack of any pointer to them is a genuine gap.

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?

Schema description coverage is 100% and the schema itself documents the parameters well (method format with a concrete example, args as a JSON array in official signature order, windowId defaulting to the active window). The description adds no parameter-specific information, so the baseline of 3 holds.

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 a specific verb ('调用' / call) and resource ('目录内任一官方EasyEDA Pro API' — any official EasyEDA Pro API in the catalog), making it clear this is a generic API dispatcher. It is implicitly distinguished from the hundreds of specific sibling tools, which are the individual endpoints this tool invokes, though the relationship to those siblings is never made explicit.

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 gives no guidance on when to invoke this generic dispatcher versus the many dedicated sibling tools exposing the same APIs, nor does it point the agent to sibling discovery tools like easyeda_api_search or easyeda_api_catalog. The whitelist constraint ('仅允许自动生成白名单中的方法') is a restriction, not actionable usage guidance.

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