Skip to main content
Glama
meetstream-ai

MeetStream MCP Server

Official

Get bot detail

get_bot_detail
Read-only

Get full session metadata for a meeting bot: platform, duration, timings, status timeline, transcript ID, caption file, and original request. Use it to verify or audit meeting details.

Instructions

Full session metadata: platform, duration, timings, status timeline, transcript_id (canonical source), caption_file (for meeting_captions provider), original request payload.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bot_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A3.9/5.0
Behavior4/5

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

The readOnlyHint annotation already signals a safe read operation, and the description adds meaningful behavioral context by listing the exact metadata fields returned. It also clarifies that transcript_id is the canonical source and that caption_file is provider-specific, which helps an agent interpret the result.

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 a single dense line with no wasted words. It front-loads the core purpose and then lists concrete return fields, with useful parenthetical clarifications for transcript_id and caption_file.

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

Completeness4/5

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

For a simple single-parameter read-only tool, the description adequately explains what the agent will receive, including special cases like meeting_captions provider. It does not explain where bot_id comes from, but the low complexity and sibling tool context make this a minor gap.

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 does not explain bot_id, its format, or how to obtain it. The single required parameter is easy to infer from the tool name, but the description adds no semantic value beyond the bare schema definition.

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-resource pair and immediately defines what the tool returns: full session metadata with enumerated fields such as platform, duration, timings, status timeline, transcript_id, caption_file, and original request payload. This clearly differentiates it from sibling tools like get_bot_status and get_bot_summary.

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 phrase 'Full session metadata' implies this is the tool to use when comprehensive session details are needed, but there is no explicit contrast with get_bot_status, get_bot_summary, or get_transcript. Usage is inferable rather than directly stated, and no when-not-to-use guidance is given.

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