Skip to main content
Glama

Bus Send

bus_send

Send a message to another agent or a specific session of it, with intent, summary, priority, and optional deadline. Target one session via 'agent/slug' or all sessions with a bare name.

Instructions

Send a message to another agent, or to one specific session of it.

Prefer agent/slug when the recipient has more than one session open: a bare name lands in the shared queue that every session reads.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toYes'kai' for every session, or 'kai/noi-calendar' for one.
intentYesShort intent, e.g. 'bug-fix', 'new-app', 'review-request'.
detailsNoExtra payload fields beyond the summary.
summaryYesWhat the recipient needs to know, in plain prose.
priorityNolow | normal | high | urgentnormal
thread_idNoContinue an existing thread.
in_reply_toNoMessage id this answers.
response_byNoISO deadline for the reply.
context_refsNoAbsolute paths the recipient should read.
message_typeNorequest | brief | response | question | event | handoffrequest
requires_responseNoRecipient is expected to reply.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden. It discloses a non-obvious routing behavior: bare names land in a shared queue read by all sessions, while `agent/slug` targets one session. This is useful beyond the basic send action, though it does not mention delivery guarantees or side effects.

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 short, front-loaded sentences with no filler. The first sentence states the core action, and the second adds essential routing nuance.

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?

Given 11 parameters, a 100% schema-described input schema, and an output schema, the description does not need to restate parameters. It covers the most important non-obvious behavior for correct use, making it sufficiently complete, though it could add a note about asynchronous delivery.

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?

The schema covers 100% of parameters, so the baseline is 3. The description adds meaningful semantics to the `to` parameter by explaining the difference between bare names and `agent/slug` addresses, going beyond the schema's terse examples.

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?

States the exact verb and resource: 'Send a message to another agent, or to one specific session of it.' This clearly distinguishes bus_send from siblings like bus_read, bus_inbox, and bus_status.

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?

Provides concrete addressing guidance: prefer `agent/slug` when the recipient has more than one session, and explains that a bare name goes to the shared queue every session reads. It gives clear context for choosing the recipient format, though it does not explicitly compare bus_send with non-obvious alternatives.

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