Skip to main content
Glama
kanishka-namdeo

electron-mcp-server

select

Choose an option from a dropdown in an Electron app for automated testing. Provide a session ID, element locator, and target value to set the desired option.

Instructions

Select an option from a dropdown

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
valueYes
timeoutNo
selectorYes
sessionIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.3

TDQS

C2.6/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden, and it discloses nothing about behavior: whether it fires change events, how it handles custom (non-native) dropdowns, whether it waits for options to appear, or what happens on failure. For a browser-interaction mutation tool this is a substantial gap.

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

Conciseness3/5

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

The single sentence is lean and front-loaded with the action, which is good structure. But at this length the brevity shades into under-specification rather than efficiency, since nothing is said about the required parameters.

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?

With four parameters, zero schema descriptions, no annotations, and no output schema, the description should be doing far more work. An agent cannot determine valid selector syntax, value-matching rules, timeout units, or the expected result from this text.

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

Parameters2/5

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

Schema description coverage is 0%, so the four parameters (value, timeout, selector, sessionId) are undocumented everywhere. The description mentions 'an option' and 'a dropdown' loosely mapping to value and selector, but says nothing about timeout semantics or sessionId, and adds no format or matching rules.

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 gives a specific verb and target ('Select an option from a dropdown'), so an agent knows this performs a selection rather than a click or fill. However, it does not differentiate itself from closely related siblings such as fill, click, or interact_accessible_node, leaving overlap ambiguous.

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 guidance on when to use this instead of fill (for text inputs) or click (for toggles), nor any mention of prerequisites such as the element needing to exist or be visible. The agent must infer the correct tool from the one-line purpose alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.