Skip to main content
Glama

list_conversations

Read-only

Retrieve and filter inbox conversations by status, platform, or assignee to review or route Instagram, WhatsApp, and Messenger messages.

Instructions

List inbox conversations. Filter by status (active/closed/pending), platform (instagram/whatsapp/messenger), or assignee.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
cursorNo
statusNo
platformNo
assignee_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds filter semantics but says nothing about pagination (limit/cursor), ordering, or result volume, which is meaningful behavioral context for a list tool.

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?

Two sentences, front-loaded with the core operation and then the filter options. No wasted words.

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?

No output schema exists, so the description needn't explain return values, but for a paginated list tool it omits how pagination and result limits work. Adequate for basic invocation, incomplete for correct iterative use.

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

Parameters3/5

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

Schema description coverage is 0%, and the description explains the meaning of status, platform, and assignee by enumerating their values. However, limit and cursor — the pagination controls — are undocumented in both schema and description, leaving a real gap for a list operation.

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?

Specific verb+resource ('List inbox conversations') that an agent can distinguish from sibling get_conversation or list_messages by its plural scope. It never explicitly names those alternatives, so it is clear but not sibling-differentiating.

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 description lists the three filter dimensions, which implies when the tool is useful. It gives no when-not guidance, no prerequisites, and does not route the agent toward get_conversation or list_messages for narrower needs.

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