Skip to main content
Glama
itk-dev

Browser Feedback MCP

by itk-dev

wait_for_browser_feedback

Blocks until a user submits feedback from the browser widget, returning screenshot, element info, console logs, and description so you can act on it.

Instructions

Wait for feedback from the browser widget. Blocks until user submits feedback. Returns screenshot, element info, console logs, and description. IMPORTANT: After receiving feedback, DO NOT call this tool again. Instead, analyze the feedback and take action (fix bugs, make changes, etc.). Only call this tool again if the user explicitly asks for more feedback or you need to verify your fix worked.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
timeout_secondsNoMaximum time to wait for feedback (default: 300 seconds / 5 minutes)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.8.0

TDQS

A4.3/5.0
Behavior4/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 does disclose the key trait: this is a blocking call that waits for a user submission. It also lists the returned payload (screenshot, element info, console logs, description). It omits what happens on timeout expiry, which is a meaningful gap for a blocking tool.

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?

Front-loads the blocking behavior and return payload, then flags the critical usage warning. Slightly long, but every sentence carries operational value and nothing is repeated from the schema.

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?

With no output schema and no annotations, the description must cover both behavior and returns, and it does so well. The only missing piece an agent might need is timeout-expiry behavior, which is not addressed.

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 coverage is 100% and the single timeout_seconds parameter is fully documented inline with its default. The description adds no parameter-level detail beyond the schema, so the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb+resource (wait for browser widget feedback) and enumerates what it returns. It is clearly distinguishable from siblings like get_pending_feedback and wait_for_multiple_feedback, which do not block for a new submission.

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

Usage Guidelines5/5

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

Gives explicit when-and-when-not guidance: after receiving feedback, do NOT re-call; instead act on it, and only re-call if the user asks or you need to verify a fix. This directly routes the agent away from a common misuse.

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