Skip to main content
Glama

get_standup

Retrieve a consolidated team-status snapshot for a time window—active agents, message counts, task states, and observation alerts—in a single server-side call.

Instructions

One-shot team-status synthesis for orchestrators (v2.1.4).

When to use: every observation cycle that would otherwise call discover_agents + get_messages + get_tasks and synthesize in-LLM. The relay does the rollup server-side so the caller burns near-zero tokens. For specific drill-downs after the rollup, fall through to the underlying tools.

Behavior: pure read. Given a window (since: '15m' | '1h' | '3h' | '1d' | ISO), returns active_agents (filtered to non-offline by default, set include_offline=true to include them), message_activity counts, task_state breakdown, and rule-based observation bullets ('agent X has been blocked >30min', etc.). Observations are hand-rolled heuristics, NO LLM on the relay side. Optional agents / roles arrays narrow the snapshot. Auth: any agent token.

Returns: { success: true, window: { since, now, duration_ms }, active_agents: Agent[], message_activity, task_state: { completed_in_window, queued, blocked, assigned_by_agent }, observations: string[] }.

Errors: VALIDATION (bad since format), AUTH_FAILED, RATE_LIMITED.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sinceYesWindow start: either a duration string ('15m' | '1h' | '3h' | '1d') or an ISO8601 timestamp. Duration shorthands: m=minutes, h=hours, d=days.
filterNoOptional narrowing filter for the standup snapshot. Combine `agents` (restrict to names) and `roles` (restrict to roles); both filters AND together. `include_offline` flips the default that drops offline agents from active_agents.
agent_tokenNoYour agent token (from register_agent response). Optional here — also resolvable from RELAY_AGENT_TOKEN env or X-Agent-Token header.
Behavior5/5

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

No annotations are provided, so the description carries the full burden — and it delivers thoroughly. It declares 'pure read', explicitly states 'NO LLM on the relay side' (observations are hand-rolled heuristics), details the default filtering behavior (non-offline, flippable via include_offline), documents the auth mechanism ('any agent token'), and lists all error codes. This is exemplary disclosure.

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?

Well structured with clear labeled sections: When to use, Behavior, Auth, Returns, Errors. Every sentence earns its place — no filler, each line conveys operational information an agent needs. Front-loaded with the core purpose and usage decision, then behavioral details, then error contract.

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

Completeness5/5

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

For a tool with nested objects, 3 params, no output schema, and no annotations, this description is exhaustive. It defines the complete return structure, ALL error modes, authentication requirements, filtering semantics, and a nuanced behavioral caveat (heuristic observations, no LLM server-side). Nothing material is left ambiguous for correct invocation and result interpretation.

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 coverage is 100%, so the schema documents all params. The description adds meaningful semantic value on top: it explains the since values, defines what include_offline flips in the default behavior, specifies that agents/roles narrow the snapshot and AND together, and rejects the agent_token parameter since it's noted optional. It adds real context beyond the schema's field descriptions.

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 is highly specific: 'One-shot team-status synthesis for orchestrators' with a clear verb-resource pair (get + standup/rollup). It explicitly defines the return contract (active_agents, message_activity, task_state, observations), distinguishes its server-side aggregation role from sibling tools, and names alternative tools to fall through to. This belongs in the Tier A category.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Excellent when/when-not guidance. It states explicitly to use this instead of chaining discover_agents + get_messages + get_tasks, points out the token-efficiency rationale, and instructs to 'fall through to the underlying tools' for drill-downs. It also enumerates all error types, giving the agent actionable preconditions.

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

Install Server

Other Tools

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/Maxlumiere/bot-relay-mcp'

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