Skip to main content
Glama
beel-es

BeeL MCP server

Official
by beel-es

beel_create_claim_token

Generate a single-use claim token and URL so an account holder can set a password and take ownership. Send email to create the holder if missing; re-issuing invalidates previous token.

Instructions

Issues a single-use claim_token, and the claim_url built from it, so the account's holder can set a password and take ownership. Send email when the account has no holder yet — the person is created by this call; omit the body to re-issue the token for the holder the account already has. An email that differs from the existing holder's is rejected rather than replacing them.

Tokens last 30 days and only the last one issued is live: issuing again invalidates the previous token, so the old link stops working the moment you ask for a new one. This hands the account itself over to its holder; to add a further person to an account that already has one, invite them with POST /v1/accounts/{account_id}/invitations.

Requires the manage_accounts entitlement.

Endpoint: POST /v1/accounts/{account_id}/claim-tokens

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNo
account_idYes
idempotency_keyNoOptional idempotency key for this operation. Omit it and one is derived from the request itself, which makes a blind retry safe but also collapses a SECOND, deliberately identical operation into the first for 24 hours. Set it — to an order id, or anything unique per intended operation — whenever you mean to create something that may look identical to what you just created.
Behavior5/5

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

Annotations are minimal (readOnlyHint=false, destructiveHint=false, openWorldHint=true) but the description adds significant behavioral context: token validity of 30 days, invalidation of previous token on re-issue, rejection of mismatched email, and the side effect of handing over account ownership. It goes well beyond the annotations and discloses critical side effects.

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 relatively long but every sentence serves a purpose—core action, usage variants, invalidation behavior, alternative, and entitlement. It is front-loaded with the primary action and structured logically. Slightly verbose but not wasteful.

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 a sensitive operation like claim token issuance, the description covers usage scenarios, side effects, invalidation, and alternatives. It does not explicitly mention the HTTP endpoint (but that's in the description as 'POST /v1/accounts/{account_id}/claim-tokens') and omits idempotency behavior (schema covers). It lacks an explicit statement about return values, but no output schema exists. Given the complexity, it's fairly complete.

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 coverage is only 33% (account_id lacks a description), so the description compensates by explaining the semantics of email in detail (required when no holder, must match existing holder) and the body's purpose. It doesn't elaborate on language, but the schema does. It omits idempotency_key details, but the schema covers that. Overall, it adds value for the key parameter.

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 action ('Issues a single-use claim_token and the claim_url') and the resource (claim token for an account holder). It also distinguishes itself from the related invitation tool by explicitly noting that adding a further person should use invitations, avoiding confusion among siblings.

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?

Provides explicit when-to-use guidance: send email when no holder exists, omit body to re-issue, and details the rejection of mismatched emails. It also directs to the alternative 'POST /v1/accounts/{account_id}/invitations' for adding further people, and states the required entitlement, covering both use and non-use cases.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/beel-es/beel-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server