Skip to main content
Glama

Start Guided Page Onboarding

page.onboarding.start
Read-onlyIdempotent

Optional planning helper that returns category/layout/palette/primary-action choices and a quality checklist (it does NOT create a page). Use it only if you want those pickers; otherwise page.intake.start → page.create_from_brief is the simpler path. IMPORTANT: this flow is STATELESS — page.onboarding.update does not remember earlier calls, so each update must resend the FULL set of selections + knownFields gathered so far. As soon as you have a business name and a primary action, stop and call page.create_from_brief (you do not need to reach a 'ready' step).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
localeNoPreferred UI locale, such as es or en.
originalRequestNo
suggestedSelectionNo

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.4/5.0
Behavior5/5

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

The description discloses important non-obvious behaviors: it is STATELESS, requires resending the FULL set of selections + knownFields on update, and clearly states it does not create the page (consistent with readOnlyHint=true). It also adds a stopping condition, all of which go beyond what annotations provide.

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 a single dense paragraph of about 90 words packed with necessary information: purpose, alternatives, statelessness, and stopping rule. It is front-loaded but could be more scannable with bullet points. No sentence is wasted, though the structure is acceptable for the complexity.

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?

The description covers purpose, usage conditions, alternatives, stateless behavior, and a clear exit criterion. Since an output schema exists, return-value details are already documented elsewhere. The description is sufficiently complete for the agent to select and invoke the tool correctly.

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

Parameters2/5

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

Schema description coverage is low (only locale has a top-level description; originalRequest has none, and suggestedSelection lacks a top-level description). The description references 'selections + knownFields' but does not explicitly map these to the schema's parameters, leaving originalRequest and suggestedSelection semantics under-specified. The nested schema partially documents subCategory and mainCategory, but the description does not compensate adequately for the gaps.

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 'returns category/layout/palette/primary-action choices and a quality checklist' and explicitly notes it 'does NOT create a page.' It differentiates from siblings by naming the alternative path 'page.intake.start → page.create_from_brief,' making it unambiguous when this helper is appropriate.

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?

The description provides explicit usage guidance: 'Use it only if you want those pickers; otherwise page.intake.start → page.create_from_brief is the simpler path.' It also gives a concrete stopping rule: 'As soon as you have a business name and a primary action, stop and call page.create_from_brief,' which tells the agent exactly when to switch to a different tool.

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