Skip to main content
Glama

start_signup

Get a Usero API key without leaving the agent. Sends the user an EMAIL with a confirm button; pressing it creates their Usero account if needed and lets check_signup collect an API key for this MCP client. Returns a pollToken for check_signup. No key is shown in the browser. 5 per email per hour; the link expires in 15 minutes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYesThe user's email address. Ask for it if you do not have it.
clientNameNoThe agent client you are running in, e.g. "Claude Code", "Cursor", "Windsurf". Shown in the email and used as the API key name.

Schema Changelog

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

  1. First observed

TDQS

A4.5/5.0
Behavior5/5

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

With annotations providing no meaningful safety hints (readOnlyHint=false, destructiveHint=false, openWorldHint=false), the description carries the full burden and does so well: it discloses email sending, account creation on confirmation, pollToken return, no key shown in browser, rate limits, and link expiry. There is no contradiction with annotations.

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?

The description is compact and front-loaded with the core purpose, followed by essential flow details, rate limits, and expiry. Every sentence adds meaningful information with no filler or repetition.

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?

Despite having no output schema, the description explains the return value (pollToken), the follow-up tool, the email/account side effects, and operational constraints. An agent has enough context to invoke the tool correctly and know what happens next.

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?

Schema description coverage is 100%, and the schema already explains email and clientName in sufficient detail. The tool description adds a rate-limit note tied to email but does not substantially enrich parameter meaning beyond the schema, so baseline 3 is appropriate.

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 a specific verb and resource ('Get a Usero API key') and explains the email-confirmation flow that distinguishes this tool from the sibling check_signup. It clearly states that this tool starts the signup process and returns a pollToken, while check_signup collects the key.

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 positions start_signup as the initiating step and explicitly references check_signup as the follow-up, so an agent can infer the intended sequence. It does not list explicit 'when not to use' conditions, but the flow is clear enough for correct selection.

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

start_signup and check_signup have clearly distinct roles: one initiates the email signup flow, the other polls for its result. There is no overlap in purpose or action.

Naming Consistency5/5

Both tools follow the same verb_noun pattern with start_ and check_. The naming is consistent, predictable, and appropriately signals the temporal relationship between the tools.

Tool Count4/5

Only two tools exist, which is below the typical 3-15 range, but the server's scope is a single signup flow. Each tool is necessary and earns its place, so the count is reasonable if minimal.

Completeness5/5

For the stated purpose of obtaining a Usero API key via email confirmation, the surface is complete: start_signup initiates the flow and check_signup retrieves the key once ready. No critical operation is missing for this narrow domain.