Skip to main content
Glama
t3ratech

T3rnel Browser — Session Bridge

Official
by t3ratech

session_record_replay

Destructive

Replay a stopped recording in its original tab to re-run every recorded interaction on the live page, while returning replayed and failed step counts to expose any partial failures.

Instructions

Replay a stopped recording in its original tab, reproducing the recorded interactions in order. Returns {sessionId, totalEvents, replayedEvents, failedEvents, errors}, so a partial replay reports which steps failed instead of appearing to succeed. The tab must still be open. This acts on the live page and its effects are real — it will re-send messages, re-submit forms and re-spend money — so the extension classifies it high risk and gates it behind an approval prompt. Requires the T3rnel Browser extension.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
speedNoReplay speed multiplier; 1 is the recorded pace, 2 is twice as fast (default 1)
sessionIdYesStopped recording session to replay, from session_record_list

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed4 schema fields changedv1.2.0
    • addedInput schema / properties / sessionId / description
      Added value: +"Stopped recording session to replay, from session_record_list"
    • addedInput schema / properties / speed / default
      Added value: +1
    • changedInput schema / properties / speed / description
      Previous value: -"Replay speed multiplier (default 1)"New value: +"Replay speed multiplier; 1 is the recorded pace, 2 is twice as fast (default 1)"
    • addedInput schema / properties / speed / exclusiveMinimum
      Added value: +0
  2. First observedv1.1.1

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already declare destructiveHint=true, readOnlyHint=false, openWorldHint=true, and idempotentHint=false. The description goes beyond this by detailing concrete real-world effects (re-sending messages, re-submitting forms, spending money), the high-risk classification with an approval prompt, the requirement that the tab must be open, and how partial replay failures are reported. This is exactly the kind of context an agent needs for a destructive action.

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 four information-dense sentences in a logical order: action, return behavior, prerequisites, and risk warning. Every sentence earns its place and there is no filler.

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

Completeness5/5

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

Despite having no output schema, the return shape is fully disclosed. The description covers preconditions, failure reporting, real-world consequences, and safety gating. With only two parameters fully documented in the schema, nothing important is missing for correct invocation.

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 description coverage is 100%, so the baseline is 3. The description restates that the session must be a stopped recording but does not add new meaning beyond what the schema already provides for sessionId or speed. No extra parameter-level guidance is given.

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 (a stopped recording), and the precise scope (in its original tab, reproducing interactions in order). It clearly differentiates from sibling record_* tools, which create, list, or inspect recordings, by focusing on the replay action.

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

Usage Guidelines4/5

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

The description gives clear context and preconditions: the recording must be stopped, the original tab must still be open, and the T3rnel Browser extension is required. It also warns that this acts on the live page and is gated behind an approval prompt, but it does not explicitly name alternative tools or stated when-not-to-use conditions.

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