Skip to main content
Glama
etairl

parallel-browser-mcp

by etairl

Browser Hover

browser_hover

Hover over an element using its selector to simulate mouse-hover actions in browser automation. Enables triggering tooltips, dropdowns, and other hover-dependent UI elements.

Instructions

Hover over an element by selector.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
timeoutNo
selectorYes
sessionIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.14

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations, the description must disclose behavior on its own. It only says 'Hover over an element' and omits what happens on missing selectors, timeout handling, or any preconditions like an active session. This is minimal and insufficient for a browser automation 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?

The description is a single, tightly worded sentence that delivers the core purpose without redundancy. It is front-loaded and easy to scan, earning full marks for conciseness.

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?

Given the absence of annotations, output schema, and parameter documentation, the description is under-specified for an agent to invoke correctly with confidence. It lacks information on error behavior, prerequisites, and parameter semantics, making it incomplete for a functional tool.

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% and the tool description does not explain any parameters. While parameter names (sessionId, selector, timeout) are somewhat self-explanatory, units, defaults, and the effect of timeout are not clarified, leaving ambiguity.

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 ('Hover') and resource ('an element') with a method ('by selector'). It is clear and distinguishes from coordinate-based mouse actions like browser_mouse_move, though it doesn't explicitly 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 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 tool versus siblings such as browser_mouse_move or browser_click. The description only states what it does, leaving the agent to infer appropriate usage from the tool name and sibling context.

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