Skip to main content
Glama
mayjack0312
by mayjack0312

eda_sch_primitive_component_place_symbol_with_mouse

Place a schematic symbol by binding it to the mouse cursor, then click on the canvas to drop it. Returns true once the symbol is attached, without waiting for the placement.

Instructions

sch_PrimitiveComponent.placeSymbolWithMouse(symbol: { libraryUuid: string; uuid: string } | ILIB_SymbolItem | ILIB_SymbolSearchItem, subPartName?: string, properties?: Record<string, boolean | number | string | undefined>) -> Promise 使用鼠标放置符号 remarks: ADD since API v0.2.26

本接口模拟前端点击放置按钮,指定的符号将绑定到当前鼠标,并在用户后续点击时放置于画布

本接口的返回时机并不会等待用户的放置操作,一旦符号被绑定到鼠标,本接口将立即返回 true 的结果 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

B3.1/5.0
Behavior3/5

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

With no annotations provided, the description carries full burden. It does disclose the key non-obvious behavior: return timing is immediate (does not wait for placement) and returns true if the symbol is found. However, it omits details like failure modes when the symbol is not found, side effects on the editing session, and whether cancellation is possible. It gives useful transparency but is not thorough for a mutation with user interaction.

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, with the signature and key behavior in a short block. It front-loads the core purpose and then explains behavior. There is some redundancy between the two Chinese explanatory sentences, but overall it is efficient enough.

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?

The description explains the return boolean and the interaction flow, but for an interactive tool it lacks important context: it doesn't state that the function is asynchronous (Promise), doesn't mention prerequisites like an open schematic, doesn't cover what happens if the user never clicks or if the mouse is already bound, and doesn't discuss recovery. Given no annotations or output schema, this is a notable 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?

The input schema only exposes generic 'args' and 'windowId', but the description provides the actual function signature with parameter types (symbol, subPartName, properties). This adds meaningful context beyond the schema. However, it does not explain the semantics of subPartName or properties (e.g., valid values, defaults), so it is only partially helpful.

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 the tool places a symbol using the mouse, and explains it simulates clicking the place button and binds the symbol to the cursor. This is a specific verb+resource. However, it does not explicitly distinguish from sibling placement tools like eda_sch_primitive_component_place_component_with_mouse or place_cbb_schematic_page, so while clear, it 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?

No guidance is given on when to use this tool versus alternatives. It does not mention prerequisites (e.g., an active schematic document), nor does it state when another placement tool would be more appropriate. The behavioral notes explain how it works but not when to choose it.

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