Skip to main content
Glama

search

Read-onlyIdempotent

Locate any word in spoken transcript and on-screen text from recordings. Every hit provides timestamps and frame position to jump straight to the evidence, with optional speaker filtering.

Instructions

Case-insensitive word search across BOTH transcript segments and frame OCR text: a text hits when EVERY word of the query matches it as a substring — any order, any distance (ё and е are interchangeable). Hits carry source (transcript|ocr), t_ms, t_wall when known, the matched text, and the nearest frame position — everything needed to jump straight to evidence. Optional speaker="S2" narrows to one voice's transcript hits. No embeddings. When NOT to use: fuzzy/semantic questions ("anything about performance?") — page get_transcript and read; regex is not supported. Examples:

  • search(job_id="...", query="login") — every spoken or on-screen mention of login

  • user: "what did I say about the login button?" → search(job_id, "login button") → get_moment at hits

  • search(job_id, "TypeError") — on-screen stack traces and error text are OCR-indexed; great for bug repros

  • search(job_id, "€49") — prices, IDs, and literals on screen are findable via OCR

  • take hit.t_wall and grep your server logs ±30 s around it to pair remark ↔ log line

  • no hits? shorten the stem: "notif" matches notification / notifications / notify

  • multi-word = ALL words as substrings, any order: "first phase" hits "the first real phase"

  • stems beat inflected phrases: "кнопк отправк" finds «Кнопка отправки» and «кнопку отправки»

  • every hit has nearest_frame_ms → get_frames(job_id, at_ms=) shows the moment

  • diarized job: transcript hits carry "speaker" — "who mentioned the deadline?" is answered by the hit itself

  • search(job_id, "deadline", speaker="S2") — only S2's mentions; OCR hits are excluded (screens have no voice)

  • audio-only job → transcript hits only (there is no OCR index)

  • anti-example: "summarize the pricing discussion" → get_transcript(format="text") and read it

  • anti-example: finding an icon or layout glitch with no text → get_frames over the range; OCR sees text only

  • anti-example: "everything S2 said" → get_transcript and collect speaker=="S2" — search always needs a query

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYes
job_idYes
speakerNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Behavior5/5

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

Annotations already indicate read-only and idempotent behavior, but the description adds substantial behavioral detail: case-insensitivity, substring matching with word order/distance rules, ё/е equivalence, hit structure (source, t_ms, t_wall, matched text, nearest frame), speaker filtering that excludes OCR, audio-only behavior, and the absence of embeddings. No contradiction with annotations.

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 long but meticulously structured: a dense summary, a 'when not to use' callout, then a bulleted list of concrete examples and edge cases. Every bullet adds distinct value—search semantics, OCR benefits, stem suggestions, speaker use, anti-examples—so no sentence is wasted.

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?

Given the tool's complexity, the description is remarkably complete. It covers result contents, alternative tools, failure modes (no hits, audio-only, OCR absence), and practical workflows (jumping to frames, grepping logs). The presence of an output schema means return values do not need exhaustive listing, but the description still provides enough to use hits effectively.

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

Parameters5/5

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

Schema coverage is 0%, so the description carries the full burden. It thoroughly explains the query parameter (every word as substring, any order/distance), the speaker parameter (narrows to one voice's transcript hits, excludes OCR), and job_id is contextualized by examples. This fully compensates for the lack of schema descriptions.

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 opens with a specific verb and resource: 'Case-insensitive word search across BOTH transcript segments and frame OCR text.' It clearly distinguishes itself from sibling tools like get_transcript and get_frames by defining its matching semantics and output scope. Multiple examples reinforce the tool's unique role.

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?

The description includes an explicit 'When NOT to use' section naming alternatives (get_transcript for fuzzy/semantic questions, get_frames for visual layout issues) and states that regex is not supported. Anti-examples and 'no hits' advice further clarify when to use the tool versus reaching for a sibling.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/korovin-aa97/talkthrough-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server