Skip to main content
Glama

bridge_receive

Read-only

Fetch durable messages from a shared relay channel. Use since_id to set an explicit cursor or consumer_id to resume from that consumer's last ack.

Instructions

Read durable messages. Pass since_id for an explicit cursor or consumer_id to resume from that consumer's last acknowledged message.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
channelYes
since_idNo
consumer_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed10 schema fields changedv1.3.0
    • addedInput schema / additionalProperties
      Added value: +false
    • removedInput schema / properties / channel / description
      Removed value: -"Channel to read from"
    • addedInput schema / properties / channel / minLength
      Added value: +1
    • addedInput schema / properties / consumer_id
      Added value: +{
      +  "minLength": 1,
      +  "type": "string"
      +}
    • removedInput schema / properties / limit / description
      Removed value: -"Max messages to return (default: 20)"
    • addedInput schema / properties / limit / maximum
      Added value: +500
    • addedInput schema / properties / limit / minimum
      Added value: +1
    • removedInput schema / properties / since_id / description
      Removed value: -"Only return messages after this message ID (exclusive). Get from a previous receive."
    • addedInput schema / properties / since_id / minLength
      Added value: +1
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "additionalProperties": true,
      +  "type": "object"
      +}
  2. First observedv1.0.0

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=true and destructiveHint=false, and the description does not contradict these. However, the description does not clarify whether reading messages removes them from the queue or if they persist until acknowledged. Since a separate bridge_ack tool exists, this behavior is important but not specified, so the description adds only partial transparency.

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, concise sentence that avoids unnecessary detail or verbosity. It is well-structured, front-loading the primary purpose and then adding parameter-specific guidance in a clear order.

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

Completeness2/5

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

The tool lacks an explanation of its output schema, which is present but not described. It also does not mention how it interacts with bridge_ack (e.g., whether messages are auto-acknowledged or require explicit ack). This incomplete context makes it difficult for an agent to fully understand the flow.

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?

The description only explains two of the four parameters: 'since_id' and 'consumer_id'. It does not explain the 'limit' parameter (pagination/volume control) or the required 'channel' parameter (which channel to read from). With 0% schema description coverage, this leaves significant gaps in understanding the correct invocation.

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's purpose: 'Read durable messages.' This is a specific verb with a defined resource, and it distinguishes itself from sibling tools like bridge_send, bridge_ack, and bridge_clear by focusing on reading rather than sending, acknowledging, or clearing.

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 provides parameter usage guidance for 'since_id' and 'consumer_id' but does not explicitly state when to use this tool versus alternatives such as bridge_wait (likely a blocking wait) or how it relates to bridge_ack. The absence of contextual usage instructions leaves some ambiguity for an agent deciding between tools.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/constripacity/Claude-Bridge'

If you have feedback or need assistance with the MCP directory API, please join our Discord server