Skip to main content
Glama

Read Comms Channel

read_channel
Read-onlyIdempotent

Fetch recent messages from a Comms channel, including the newest. Requires a channel_id from list_channels; returns messages in the channel (empty if silent).

Instructions

Read a Comms channel's recent messages, newest included (the connected member must be a channel member). Read-only; returns the messages, empty when the channel is silent. Resolve channel_id first with list_channels — never guess it. Optional limit.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax messages to return (optional).
channel_idYesChannel id, from list_channels.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.1.14
  2. Removedv0.1.12
  3. Changed3 schema fields changedv0.1.5
    • changedInput schema / properties / limit / description
      Previous value: -"Max messages to return (optional)."New value: +"Maximum number of most-recent messages to return (optional; the server applies a sensible default when omitted)."
    • addedInput schema / properties / limit / exclusiveMinimum
      Added value: +0
    • changedInput schema / properties / limit / type
      Previous value: -"number"New value: +"integer"
  4. First observedv0.1.0

TDQS

A4.6/5.0
Behavior5/5

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

Annotations already declare read-only, idempotent, and non-destructive. The description adds important context: the connected member must be a channel member, the return is empty when silent, and channel_id must be resolved via list_channels. These are beyond the annotations and clarify expected 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?

Three concise sentences, each providing distinct information: what is read, membership requirement, and how to obtain channel_id. No redundancy or filler, front-loaded with the core purpose.

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?

With no output schema, the description mentions return contents and empty behavior. The membership requirement and resolution step are covered. It's complete enough for a safe read operation, though ordering beyond 'newest included' could be explicit.

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?

Schema coverage is 100% for both parameters. The description reinforces channel_id's source (list_channels) and notes limit is optional, which complements the schema's existing descriptions. This adds value rather than merely repeating schema info.

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 clearly states the tool reads a Comms channel's recent messages, specifying the resource ('Comms channel') and action ('read'). It also distinguishes from siblings like list_channels (which lists channels) and post_to_channel (which writes) by noting it returns messages and is read-only.

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

Usage Guidelines4/5

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

The description gives explicit prerequisite guidance: 'Resolve channel_id first with list_channels — never guess it.' It also notes the read-only nature and optional limit, but doesn't explicitly mention when to use this over alternatives like get_conversation. Still, the resolution instruction is valuable context.

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