Skip to main content
Glama
meetstream-ai

MeetStream MCP Server

Official

Send chat message into the meeting

send_chat_message

Post a chat message into a live meeting through a designated bot, enabling immediate communication with participants.

Instructions

Post a chat message into the live meeting through the bot.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bot_idYes
messageYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It correctly signals that this is a write operation ('Post') and that it requires a 'live meeting' and a bot. However, it does not disclose prerequisites like whether the bot must already be in the meeting, message constraints, or failure/error behavior.

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 direct sentence with no filler: it front-loads the action, target, and mechanism. Every word contributes meaning, and nothing is redundant.

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 simple send operation, the description covers the core action, but it omits response/return behavior, error cases, and preconditions. With no output schema and no annotations, an agent has limited information to confirm that the call succeeded or to debug failures.

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?

Both parameters have no schema descriptions (0% coverage), and the description does not explicitly map bot_id and message. It only vaguely implies that message is the chat content and bot_id identifies the bot, without specifying types, formats, or constraints beyond what the schema already states.

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 uses a specific verb, 'Post,' and clearly identifies the resource ('a chat message'), the target ('the live meeting'), and the mechanism ('through the bot'). This distinguishes it from siblings like send_image, which sends an image rather than a 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 Guidelines3/5

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

The intended use is implied: when you need to send a chat message to a live meeting via a bot. However, there is no explicit guidance on when to use this instead of alternatives, such as send_image, or any exclusions.

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