Skip to main content
Glama

Update Guided Page Onboarding

page.onboarding.update
Read-onlyIdempotent

Validate onboarding selections and return the remaining checklist. STATELESS: it does not remember previous calls, so every call must include the FULL accumulated selection (mainCategory, subCategory, layout, palette, primaryAction) plus all knownFields (name, description, action destination, etc.) gathered so far — not just the latest answer, or earlier choices will look 'missing'. You do not need to loop to a 'ready' state: once you have a name and a primary action, call page.create_from_brief with those values.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
localeNo
stepIdNo
selectionNo
knownFieldsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
modeYes
stepIdYes
uiHtmlYes
choicesYes
selectedYes
nextPromptYes
canContinueYes
profileCopyYes
slugGuidanceYes
imageGuidanceYes
layoutChoicesYes
missingFieldsYes
readyToCreateYes
layoutGuidanceYes
paletteChoicesYes
primaryActionsYes
invalidSelectionYes
qualityChecklistYes
recommendedLinksYes
recommendedBlocksYes
createFromBriefHintsYes
recommendedMissingFieldsYes

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, but the description adds the crucial statelessness trait: 'STATELESS: it does not remember previous calls'. It also explains the consequence of omitting earlier selections, going beyond annotation coverage.

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 3 sentences (~100 words) and front-loaded with the core action. The STATELESS warning and loop exit condition are essential context, though the prose is somewhat dense.

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 the tool's 4-parameter, nested-object schema and output schema, the description covers critical behavioral requirements: full payload, no state, and handoff to page.create_from_brief. It doesn't explain stepId or selection semantics, but the schema handles those.

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 description lists the required accumulated fields (mainCategory, subCategory, layout, palette, primaryAction) and knownFields, adding the key semantic that all must be sent together. While it doesn't define each parameter's value, the input schema provides enums/descriptions for some nested fields.

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 opens with 'Validate onboarding selections and return the remaining checklist', a specific verb and clear resource. It also references page.create_from_brief as the follow-up step, distinguishing itself from page creation tools.

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?

It explicitly warns against looping: 'You do not need to loop to a "ready" state' and instructs to call page.create_from_brief once name and primary action are available. It also mandates including the full accumulated selection every call, providing concrete usage 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

A4.1/5.0
Disambiguation4/5

Most tools target distinct resources and actions (blocks, accounts, pages), but page.create and page.create_from_brief both create pages, and page.intake.start vs page.onboarding.start/update are overlapping planning helpers. The detailed descriptions help disambiguate, though an agent might still pause on choosing between them.

Naming Consistency5/5

All tool names follow a consistent lowercase dot-separated resource.action pattern (e.g., block.add, page.publish, account.whoami). Nested resources like page.header.update and page.onboarding.update extend the same rule without mixing conventions.

Tool Count3/5

At 23 tools, the count sits in the borderline 16-25 range. Many tools are specific and justified, but the planning helpers (intake/onboarding) and multiple page creation variants add bulk that could be consolidated.

Completeness3/5

The server covers create, read, update, block management, and publish/unpublish, but misses a page.delete operation, leaving a lifecycle dead-end. Account tools are also minimal, limited to reading/listing without management capabilities.

Resources