Skip to main content
Glama
meetstream-ai

MeetStream MCP Server

Official

Get speaker timeline

get_speaker_timeline
Read-only

Retrieve a meeting's speaker timeline to see who spoke and when, with speaker IDs and names for each chunk.

Instructions

Who spoke and when (chunk timeline with speaker ids/names).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bot_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

B3.3/5.0
Behavior3/5

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

The annotations already mark the operation read-only, so no safety disclosure is needed. The description adds a small amount of behavioral context by indicating the output is a chunk timeline with speaker ids/names, but it does not disclose ordering, chunk boundaries, or response format.

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?

A single compact sentence conveys the core result and its format without filler. The key output information is front-loaded.

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 single-parameter read-only tool, the description is minimally sufficient, but it leaves the exact response shape and the role of bot_id implicit. More detail on the returned chunks or explicit linkage to the bot would make it complete.

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 description never mentions bot_id or explains what bot the timeline belongs to. The parameter name is simple, but the description fails to compensate for the absent schema documentation.

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 clearly identifies the resource (a chunked speaker timeline) and what it contains (speaker ids/names and when they spoke), which distinguishes it from related tools like get_transcript or get_participants. It lacks an explicit verb, but the tool name supplies the action.

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 phrasing 'Who spoke and when' implies the use case for retrieving a speaker-segmented timeline. However, it gives no explicit guidance on when to choose this tool over siblings such as get_transcript or get_participants.

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