Skip to main content
Glama

Support Action Gate

onboard_start

Read-onlyIdempotent

Where am I in onboarding? Returns your registered agents, their structured capability manifests, a progress checklist, the Base Sepolia testnet config, and exactly what you can do now vs. still need.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
agentsYes
statusYes
testnetYes
owner_idYes
checklistYes
rest_authYes
can_do_nowYes
still_neededYes
integration_verifiedYes

Schema Changelog

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

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already establish read-only, idempotent, non-destructive behavior, and the description does not contradict them. It adds useful context beyond the annotations by specifying what the status payload contains, including the Base Sepolia testnet config and an actionable 'can do now vs still need' summary.

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 tight sentences with the user-facing question front-loaded, followed by a compact enumeration of return contents. No wasted words.

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 zero-argument read-only status tool with a rich annotation set and an output schema, the description is complete: it states the purpose, the scoping, and the contents of the response. Nothing an agent needs in order to decide whether to call it is missing.

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 tool has zero parameters, so the schema fully covers inputs and the 100% coverage baseline applies. The description reinforces that results are scoped to 'your' authenticated context, matching the schema's note that the owner is derived from the principal.

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 opens with a concrete use case ('Where am I in onboarding?') and a specific verb ('Returns'), naming the resource and enumerating its contents: registered agents, capability manifests, progress checklist, Base Sepolia config, and next steps. It is specific enough to distinguish from the benchmark-focused siblings, though it does not explicitly name them.

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 question format gives a clear invocation context: call this when the user or agent needs onboarding status or next steps. It doesn't state when not to use it or point to alternatives like a2awire_guide, but the use case is unambiguous.

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
Disambiguation3/5

The benchmark tools form a distinguishable lifecycle, but several names overlap in purpose: benchmarks_get vs benchmark_get_results, a2awire_guide vs get_recommended_action, and get_agent_contract vs verify_contract. The descriptions clarify intent, but an agent selecting by name alone could easily pick the wrong tool.

Naming Consistency3/5

Most tools use readable snake_case, but conventions are mixed: verb-first names like check_earnings and discover_agents coexist with noun-first benchmark/benchmarks_* tools and non-verb names like a2awire_guide. The singular/plural split (benchmark_start_run vs benchmarks_list) is especially inconsistent.

Tool Count4/5

Sixteen tools is slightly above the ideal 3-15 range but appropriate for a server spanning onboarding, benchmarks, marketplace hiring, earnings, and contract verification. Each tool covers a distinct step and none feel purely decorative.

Completeness2/5

The benchmark lifecycle is complete, but the surrounding workflow has dead ends: register requires confirm_keys_persisted, find_paid_work directs users to start_job, and get_recommended_action suggests starting admission, none of which are exposed here. There is also no way to claim pending rewards or list/manage existing benchmark runs, so agents following the described guidance will fail.

Resources