Skip to main content
Glama
zhaolibins001-svg

Smart Browser MCP

browser_flow_run

Replays a previously recorded browser flow by name to automate repeatable web tasks, eliminating the need to manually redo steps.

Instructions

Replay a recorded flow by name (from browser_flow_record).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

A3.9/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full behavioral disclosure burden. 'Replay' conveys the core behavior of re-executing a recorded flow, but it does not mention side effects such as browser navigation or clicks, nor runtime/failure behavior. This is adequate but thin.

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?

One concise, front-loaded sentence with no redundant wording. Every part adds value: the action, the object, the selection criterion, and the source tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a one-parameter tool, the description gives enough to invoke it. However, with no output schema and no annotations, it leaves gaps around how to confirm a flow name is valid and what the result of a successful run looks like.

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

Parameters4/5

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

The input schema provides only a required string 'name' with no description, so schema description coverage is 0%. The description compensates by specifying that the name is the name of a recorded flow from browser_flow_record, giving the parameter practical meaning.

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?

The description states a specific verb ('Replay'), a specific resource ('recorded flow'), and qualifies it 'by name' with a pointer to browser_flow_record. This clearly differentiates the tool from sibling browsing and recording tools.

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

Usage Guidelines3/5

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

The phrase 'from browser_flow_record' implies a flow must have been recorded first, which gives basic usage context. However, it does not explicitly state when to use this over alternatives, nor does it mention that browser_flow_list can be used to discover valid flow names.

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