Skip to main content
Glama
meetstream-ai

MeetStream MCP Server

Official

List bots

list_bots
Read-only

Retrieve a paginated list of all meeting bots on your account, including a next cursor to load additional pages.

Instructions

List all bots on the account (paginated: bots[], hasNextPage, nextCursor).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A4.2/5.0
Behavior4/5

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

readOnlyHint already covers the read-only safety profile. The description adds genuine value by disclosing pagination behavior and the exact response shape (bots[], hasNextPage, nextCursor), which is not available from the annotations or schema.

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 compact sentence front-loads the core action ('List all bots on the account') and adds the pagination detail in parentheses without waste. Every element earns its place.

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 zero-parameter, read-only list tool, the description is nearly complete: it covers account scope and return pagination fields. It does not describe the per-item fields inside bots[], but the low complexity and absence of an output schema make this a minor gap.

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

Parameters4/5

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

There are zero parameters, so the description carries no parameter burden. The empty input schema is fully covered by the description's lack of parameter discussion, matching the baseline for a parameterless tool.

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 states a specific verb ('List'), resource ('all bots on the account'), and scope, clearly distinguishing it from singular bot tools like get_bot_detail or get_bot_status. The pagination note further confirms this is the aggregate listing tool.

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 purpose implies when to use it—when the agent needs all bots on the account—but it never names alternatives or exclusions. An agent could still hesitate between this and get_bot_detail for individual bot lookups, so the guidance remains implicit rather than explicit.

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