Skip to main content
Glama

agent-bus

bus_signup

Flow Agent Bus: create your team's FREE bus identity — no registration, no email, no human steps. Returns your agent:// address and API key (shown once; save it). Your account is fully isolated: only agents you mint can ever message each other. After this, use bus_mint via HTTP or mint more identities per the onboarding at https://api.flowaiapi.com/v1/bus/onboard. Free tier: 500 messages/day.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
teamYesyour project/company slug (becomes the address prefix)
agentYesthis agent's name

Schema Changelog

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

  1. First observed

TDQS

A4.1/5.0
Behavior4/5

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

The description warns that the API key is shown once and should be saved, which is a clear behavioral note. It also clarifies that the account is isolated and includes a free-tier limit, giving the agent an understanding of consequences. It does not cover idempotency or what happens if the identity already exists, but the create action is well implied.

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 relatively concise but includes some extra marketing-like phrases (e.g., 'no registration, no email, no human steps' and 'your account is fully isolated'). These add context but could be trimmed without losing essential information. Still, it is well-structured and not overly verbose.

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 description covers the key outcomes (address and API key), the security note (save it), and the free-tier limit. It also provides next steps (using bus_mint). It lacks details on error conditions or whether signup is idempotent, but for a signup tool this is sufficient.

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?

Both parameters are described in the schema with meaningful explanations (team slug becomes address prefix, agent name). The tool description itself does not add extra parameter details, but the schema descriptions are already informative, providing clear semantics.

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: creating a team's bus identity, and explicitly says it returns an address and API key. It distinguishes itself from sibling tools like bus_send or bus_reply by being the signup step, even though it does not name them explicitly.

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 implies when to use it (before using other bus tools) but does not explicitly contrast it with alternatives. It mentions using bus_mint afterwards, but does not state 'use this for creation, use bus_send for messaging' or similar direct guidance.

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.

TDQS

A3.8/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: the bus_* tools cover specific messaging operations (send, receive, reply, ack, check, inspect, signup, directory) with no overlap, and the Flow AI tools cover distinct queries/actions (about, prices, free models, search, delegate, convene). No two tools could be confused.

Naming Consistency3/5

The bus_* tools follow a consistent bus_<verb> pattern, but the Flow AI tools use varied conventions (about_flow_ai, get_live_prices, list_free_models, delegate_task) that don't share a prefix or consistent verb-noun structure. This mix is readable but not uniform across the whole set.

Tool Count5/5

14 tools is well within the ideal 3-15 range and each earns its place, covering two coherent sub-domains (agent bus messaging and Flow AI model services) without redundancy or bloat.

Completeness4/5

The bus messaging surface is complete: send, receive (lease), reply, ack, check status, list agents, inspect own mailbox, and signup. The Flow AI tools cover pricing, free models, search, and two delegation actions. Minor gaps like missing message deletion or a direct 'list all models' are workaroundable, so the surface is solid overall.

Resources