Skip to main content
Glama
meetstream-ai

MeetStream MCP Server

Official

Get in-meeting chat

get_chats
Read-only

Retrieve chat messages captured during a meeting by providing the bot ID.

Instructions

Chat messages captured during the meeting.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bot_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

C2.4/5.0
Behavior2/5

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

The readOnlyHint annotation already signals that this is a safe read operation, and the description adds little beyond that: 'captured during the meeting' mostly restates the title. It does not disclose behavior such as ordering, pagination, message fields, whether empty results are possible, or how returned chats relate to the transcript.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short, but the brevity is under-specification rather than economical completeness. It omits essential semantic content about the parameter and usage context, so the single sentence does not earn its place as a sufficient definition.

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

Completeness2/5

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

For a simple one-parameter tool, the description still leaves a critical gap: it never explains that bot_id identifies the meeting/bot whose chats should be returned. With no output schema and no param descriptions, this is not enough context for an agent to invoke the tool correctly with confidence.

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

Parameters1/5

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

Schema description coverage is 0%, and the single required parameter bot_id is completely undocumented in both the schema and the description. The agent receives no explanation of what bot_id represents, how to find it, or what format it should take, so it cannot reliably populate the only required argument.

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 identifies a specific resource ('chat messages') and the context ('during the meeting'), and the title clarifies the action as 'Get'. It is clear enough to be understood as a retrieval tool for in-meeting chat, though it does not explicitly differentiate itself from siblings such as get_transcript or send_chat_message.

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

Usage Guidelines2/5

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

No guidance is given on when to use this tool versus alternatives like get_transcript or send_chat_message. The phrase 'during the meeting' provides some context, but there is no scenario, exclusion, or mention of a preferred alternative.

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