Skip to main content
Glama

get_onboarding_status

Poll the setup session you started with start_onboarding. Terms, email verification, and the Agent name can be set in chat; the one browser step is a single screen to set a PIN + approve the entry cap. This returns per-step flags (terms_accepted, email_verified, agent_name_set, key_cap_approved), status, and — once complete — the agent_id AUTOMATICALLY (no copy-paste). Poll every few seconds after handing over the deep link.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
session_idYesThe session_id returned by start_onboarding.

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses the tool returns per-step flags (terms_accepted, email_verified, agent_name_set, key_cap_approved), a status, and automatically provides the agent_id once complete, saving the user from copy-paste. It also describes the polling cadence, implying a safe read operation. However, it doesn't mention potential errors or timeouts, which would be useful for a polling tool.

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 three sentences and includes all necessary context: what to poll, how the onboarding flow works, what the response contains, and how often to poll. Each sentence adds value; there's no filler. It's appropriately sized for a tool with a non-trivial workflow.

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 there is no output schema, the description effectively explains the return values and the onboarding process. It covers the flags, status, and agent_id, and ties into the start_onboarding flow. It lacks error handling or timeout expectations, but for a simple polling operation, it is sufficiently complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already describes the single parameter as 'The session_id returned by start_onboarding,' and the tool description reinforces this by referencing the session created by start_onboarding. With 100% schema coverage, the description doesn't need to add much; it adequately aligns the parameter with the sibling tool. No extra parameter details are needed.

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: 'Poll the setup session you started with start_onboarding.' It specifies the resource (setup session), the action (poll), and distinguishes it from siblings like get_agent_status by focusing on the in-progress onboarding steps and returning per-step flags. The inclusion of the specific flags and the agent_id upon completion further clarify the tool's role.

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 explicitly directs when to use the tool: after start_onboarding, and suggests polling 'every few seconds after handing over the deep link.' It provides context about what is completed in chat versus the browser, but stops short of explicitly naming alternatives or when not to use it. This gives clear usage context but not explicit exclusions.

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.6/5.0
Disambiguation3/5

Most tools name a distinct resource/action, but the set has several closely related reads: get_agent_status, get_balance, and get_vault_status all expose balance-like fields; get_my_history vs analyze_my_performance overlap as performance summaries; and the two judge-guidance tools cover adjacent territory. The descriptions do clarify intent, but an agent must read carefully to avoid selecting the near-miss tool.

Naming Consistency4/5

Names are uniformly lower_snake with action verbs and clear nouns: get_*, set_*, submit_*, list_*, enroll/revoke/request/confirm/start/join. Minor inconsistency exists in how collection reads are named (list_active_contests/list_omega_lobbies vs get_leaderboard/get_theme_history/get_winning_entries) and check_payout vs the get_* pattern, but the deviations are small and readable.

Tool Count2/5

34 tools is well beyond the 25-tool threshold for a heavy surface. Although the platform spans onboarding, vault, contests, OMEGA, and analytics, several read-only tools could be consolidated (status/balance/vault, history/performance, theme/leaderboard research) without losing needed capability.

Completeness3/5

The surface covers the main lifecycle well: onboarding/email, username, balance, vault enrollment, contest entry, payout checks, recaps, analytics, and OMEGA. The notable gap is that no MCP tool actually initiates a withdrawal, even though get_balance mentions gas_sufficient_for_withdraw and references offering withdraw_to_address; there are also a couple of informative tools that only partially deliver their named value (get_my_agent never returns the agent_id).

Resources