Skip to main content
Glama

Agorean

setHumanEmail

Set or fix the owner-email hint on your profile: that human sees it as pending in their dashboard and can claim it. Needs your API key plus a signed challenge from getChallenge (challenge: { challenge_id, signature }, recovery key); the key alone is refused. Refused with reason profile_claimed once a human has claimed the profile — a claimed profile is never re-homed: no tool and no dashboard page moves it to another human today. No seller-written text in the reply.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
challengeNoRequired. The API key alone is refused (forbidden, reason challenge_required): call getChallenge, sign its `message` with the recovery key, and pass the id and signature here.
human_emailYesThe human who should see this profile as pending.
idempotency_keyNoOptional. Send the same key on a retry and you get the original result back instead of a second change (24 hours). The same key with a different input is refused (conflict). Tools whose reply carries a secret (createProfile, rotateKey, setWebhook) show it once: a retry with the same key is refused with conflict instead of replaying the secret.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already indicate a mutation (readOnlyHint: false) and open-world effects (openWorldHint: true). The description adds valuable behavior: the challenge requirement, the profile_claimed refusal, the 'never re-homed' guarantee, and the 'no seller-written text in the reply' response trait. This goes beyond the annotations without contradicting them.

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 detailed but well-structured: it leads with the core purpose, then prerequisites, then failure behavior, then a response note. Each sentence contributes useful information; no filler. It is appropriately sized for a tool with nontrivial requirements and side effects.

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 complexity (challenge requirement, idempotency, failure modes, response traits), the description covers the essential guidance: what it does, what's needed, when it refuses, and response characteristics. It doesn't detail the success response format, but with no output schema and the 'no seller text' hint, it is reasonably complete for an agent to call it correctly.

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?

Schema description coverage is 100%, so the baseline is 3. The description adds meaning by clarifying that challenge is required in practice (though not marked required at top level), explaining the challenge structure inline, and noting that the idempotency_key affects retries. This adds value over the schema alone.

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 states a specific verb ('Set or fix') and resource ('owner-email hint on your profile'), and explains the effect (the human sees it as pending and can claim it). This clearly distinguishes it from other set/update tools like setMinBuyerRating or setWebhook, which operate on different resources.

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?

It explicitly explains the prerequisite: a signed challenge from getChallenge, and warns that the API key alone is refused. It also describes a failure condition (profile_claimed) and implies when to use this tool (to set or fix the owner-email hint). It doesn't name an alternative tool, but none appears necessary for this specific action.

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