Skip to main content
Glama

Add details to a waitlist record

update_waitlist
Idempotent

Merges follow-up details into an existing waitlist record. Requires the edit_token returned by join_waitlist - email alone never authorizes a merge. A repeat with nothing new returns already: true. All detail fields optional: name, company, role, context (one line: what they sell), why (the problem they are solving), question (anything they want to ask).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
whyNoWhat brought them here - the problem to solve.
nameNo
roleNo
emailYesThe email used at join time.
companyNo
consentYesMust be true.
contextNoOne line: what they sell.
questionNoAnything they want to ask Clair.
edit_tokenYesToken returned by join_waitlist.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.8/5.0
Behavior5/5

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

Adds meaningful behavior beyond annotations: merge semantics (partial update, not replace), token-based authorization instead of email, and a concrete idempotency signal ('A repeat with nothing new returns already: true'). Consistent with idempotentHint and destructiveHint=false, with no contradictions.

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?

Three dense, front-loaded sentences: operation, authorization, and optionality/field semantics. Every sentence adds a distinct fact with no redundancy or filler.

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?

Covers the critical call-time facts (auth, idempotency, optional fields) and relies on schema/annotations for the rest. Could have mentioned the successful merge return value or consent field, but these are either in the schema or not essential for correct invocation.

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?

Description supplements the 67% schema coverage by listing the optional detail fields and giving glosses for context, why, and question. It doesn't define name/role/company beyond optionality, but those are self-explanatory and the schema already covers required parameters.

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?

States a specific action ('Merges follow-up details') and resource ('existing waitlist record'), with the title reinforcing it. Distinguishes this from sibling join_waitlist by emphasizing 'existing' and the edit token, making the purpose immediately unambiguous.

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?

Explicitly names the prerequisite (edit_token from join_waitlist) and states when not to rely on it ('email alone never authorizes a merge'). Also tells the agent that detail fields are optional, clarifying when this tool is appropriate to call.

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.

Resources