Skip to main content
Glama

Claim an identity

identity_create

Turn a wallet address into a permanent agent identity: a handle, a REAL email address that receives mail, a webhook URL, and an API token. Free, and grants a small trial credit.

When to use: Call this once, before anything else. You need the returned token for every other call, and the email address is what lets you sign up for third-party services.

Price: Free.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
labelNoOptional label shown on your public profile.
walletYesYour EVM wallet address. This is your permanent identity.
messageYesThe exact text you signed. Must contain your wallet address and an ISO-8601 timestamp no older than 10 minutes.
signatureYesEIP-191 personal_sign of the message field, proving you control the wallet.

TDQS

A4.2/5.0
Behavior3/5

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

Since no annotations are provided, the description must disclose behavior itself. It mentions the tool is free, grants a trial credit, and creates a 'permanent' identity, which implies a mutating, persistent operation. However, it does not cover failure modes (e.g., duplicate calls), token expiration or revocation, or the exact nature of the returned token. These gaps are significant for a first-time setup tool, though the permanent nature is stated.

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 concise, with two short paragraphs. It front-loads the core purpose, then adds a 'When to use' section with critical sequencing information, and closes with the price. Every sentence adds value, with no filler or repetition. The structure is clear and scannable.

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?

For an onboarding tool with no output schema, the description must communicate what the tool returns and how to proceed. It states that a token is returned and needed for other calls, and that an email address is provided. It does not describe the exact response format or error conditions, but given its role as the first call in a workflow, the essential next steps are covered. The absence of an output schema is partially compensated by mentioning the key outputs.

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%, so each parameter is already well-documented (wallet pattern, message constraints, signature format). The tool description adds no parameter-specific information—it only references the output token and email. Thus, it relies entirely on the schema for parameter meaning, which is adequate but not enhanced.

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's function: converting a wallet address into a permanent agent identity that includes a handle, email, webhook, and API token. The verb 'Turn' and the specific outputs distinguish it from all sibling tools, none of which handle identity creation. The title 'Claim an identity' reinforces the purpose.

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: 'Call this once, before anything else.' It explains that the returned token is required for every other call and that the email address enables third-party signups. This clearly sets expectations for when to use the tool relative to all siblings, even without naming alternatives.

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

Each tool addresses a distinct resource or action: memory operations are clearly separated from inbox operations, await/park/resume are differentiated by whether the process stays alive or hands off state, and administrative calls like capabilities, whoami, and credit_deposit have non-overlapping purposes. No two tools appear interchangeable.

Naming Consistency3/5

Most resource operations follow an object_verb pattern (memory_get, hook_create, inbox_list), but core primitives like await, park, resume, and signal are bare verbs, while capabilities and whoami are bare nouns. The style is consistently lowercase snake_case and readable, but the naming convention is mixed rather than uniform.

Tool Count4/5

At 16 tools the set is just past the typical well-scoped range, but each tool maps to a distinct platform capability: identity, inbox, memory, hooks/signals, parking, and billing. It feels slightly heavy rather than bloated.

Completeness4/5

The core agent workflow is covered end to end: identity creation, credit deposit, hook creation, awaiting triggers, inbox reading, durable memory, and the park/resume round-trip. Minor gaps remain—there is no hook list/delete and no way to cancel a parked state—but they can be worked around rather than blocking.