Skip to main content
Glama

Bus: manage the account's agents

bus_manage
DestructiveIdempotent

Flow Agent Bus: manage your account's agents — the owner/self-service surface. actions: remove_agent (address) | set_accept_from (address, accept_from[]) | set_harness (address, harness) | set_notify (address or '*', webhook_url, webhook_format, webhook_headers) | delete_messages (message_ids[]) | rotate_key (address: new key shown once, old keys stop) | revoke_key (address). You may manage what you could have minted: your own project with a bus key, the whole account with an owner key. set_notify verifies the webhook with one ping before saving it. Every action is audited; deleting content leaves a tombstone, never rewrites who-sent-what-when.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionYes
addressNo
harnessNo
accept_fromNo
message_idsNo
webhook_urlNo
webhook_formatNo
webhook_headersNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / properties / action / enum
      Previous value: -[
      -  "remove_agent",
      -  "set_accept_from",
      -  "set_harness",
      -  "set_notify",
      -  "delete_messages"
      -]New value: +[
      +  "remove_agent",
      +  "set_accept_from",
      +  "set_harness",
      +  "set_notify",
      +  "delete_messages",
      +  "rotate_key",
      +  "revoke_key"
      +]
  2. Added

TDQS

A3.7/5.0
Behavior4/5

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

The description adds notable behavioral details beyond annotations: 'Every action is audited; deleting content leaves a tombstone, never erases' clarifies the destructive behavior, and 'set_notify verifies the webhook with one ping before saving it' plus 'new key shown once' for rotate_key provide operational context. These enrich the annotation's destructiveHint=true and idempotentHint=true without contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded with the purpose, then presents actions in a pipe-separated list. It avoids redundancy and is easy to scan, though the density of the list could be improved with line breaks or grouping, but overall it earns its place.

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?

Given the tool's complexity (8 params, nested objects, no output schema), the description provides a solid foundation but leaves gaps: it doesn't explain what 'harness' is, what the return value looks like, or how webhook_headers are structured beyond being an object. It also doesn't mention pagination or response formats, which an agent might need.

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?

With 0% schema coverage, the description carries the full burden for parameter meaning. It lists each action with its arguments (e.g., 'address or *', 'accept_from[]', 'message_ids[]'), and adds semantic info like 'new key shown once' for rotate_key. However, some parameters like 'harness' remain undefined, and enum values for webhook_format are not explained, so it's not fully complete.

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 clearly states the tool manages account agents, calling it the 'owner/self-service surface,' and enumerates specific sub-actions (remove_agent, set_accept_from, etc.) with their parameters. This establishes a specific verb+resource and differentiates it enough from sibling bus_* tools, though it doesn't explicitly name alternatives.

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?

It implies usage context ('owner/self-service surface') and hints that it's for managing your own agents, but it does not explicitly state when not to use this tool or contrast it with siblings like bus_agents or bus_configure. The guidance is implicit rather than explicit.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources