Skip to main content
Glama

bridge_send

Publish durable messages to a channel. Use an idempotency key to prevent duplicate messages during retries, and support legacy or structured message formats.

Instructions

Publish a durable message. Use content for legacy text/JSON, or message for the versioned structured envelope. Supply idempotency_key when a retry must not create a duplicate.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
senderYes
channelYes
contentNoLegacy text or JSON
messageNoStructured protocol-v1 envelope
idempotency_keyNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

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

  1. Changed13 schema fields changedv1.3.0
    • addedInput schema / additionalProperties
      Added value: +false
    • addedInput schema / oneOf
      Added value: +[
      +  {
      +    "not": {
      +      "required": [
      +        "message"
      +      ]
      +    },
      +    "required": [
      +      "content"
      +    ]
      +  },
      +  {
      +    "not": {
      +      "required": [
      +        "content"
      +      ]
      +    },
      +    "required": [
      +      "message"
      +    ]
      +  }
      +]
    • removedInput schema / properties / channel / description
      Removed value: -"Channel name, e.g. 'demo:orchestrator'"
    • addedInput schema / properties / channel / maxLength
      Added value: +256
    • addedInput schema / properties / channel / minLength
      Added value: +1
    • changedInput schema / properties / content / description
      Previous value: -"Message content — can be plain text or JSON"New value: +"Legacy text or JSON"
    • addedInput schema / properties / idempotency_key
      Added value: +{
      +  "maxLength": 256,
      +  "minLength": 1,
      +  "type": "string"
      +}
    • addedInput schema / properties / message
      Added value: +{
      +  "additionalProperties": true,
      +  "description": "Structured protocol-v1 envelope",
      +  "properties": {
      +    "content": {},
      +    "schema_version": {
      +      "const": 1
      +    },
      +    "type": {
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "schema_version",
      +    "type",
      +    "content"
      +  ],
      +  "type": "object"
      +}
    • removedInput schema / properties / sender / description
      Removed value: -"Your identity, e.g. 'windows' or 'mac'"
    • addedInput schema / properties / sender / maxLength
      Added value: +128
    • addedInput schema / properties / sender / minLength
      Added value: +1
    • changedInput schema / required
      Previous value: -[
      -  "channel",
      -  "sender",
      -  "content"
      -]New value: +[
      +  "channel",
      +  "sender"
      +]
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "additionalProperties": true,
      +  "type": "object"
      +}
  2. First observedv1.0.0

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false, destructiveHint=false, idempotentHint=false. The description adds the idempotency_key behavior (retry must not create duplicate), which is useful. It doesn't disclose what happens on failure, delivery guarantees, or whether the message is persisted. With annotations covering the basic safety profile, the description adds some value but not deep behavioral context.

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 sentences, each earning its place. The first states the action, the second explains the two payload options, the third covers idempotency. No fluff, 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?

The tool has 5 parameters, 2 required, nested objects, and an output schema. The description covers the key decision points (content vs message, idempotency_key). It doesn't explain the output schema, but that's available separately. It doesn't mention channel/sender requirements, but those are self-explanatory from the schema. Given the complexity, the description is reasonably complete for an agent to call it correctly.

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 description coverage is 40%, so the description must compensate. It explains the distinction between content (legacy) and message (versioned structured envelope), and the purpose of idempotency_key. This adds meaning beyond the schema, which only describes content as 'Legacy text or JSON' and message as 'Structured protocol-v1 envelope'. The description clarifies the semantic difference and the idempotency use case.

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?

The description states a specific verb ('Publish') and resource ('durable message'), and distinguishes between two payload formats (content vs message). It doesn't explicitly name sibling tools, but the purpose is clear enough to differentiate from bridge_receive, bridge_ack, etc.

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 clear guidance on when to use content vs message, and when to supply idempotency_key. It doesn't explicitly state when not to use this tool or name alternatives, but the context of siblings (receive, ack, wait) implies this is the send operation. The guidance is practical and actionable.

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