Skip to main content
Glama

fabric_recovery_start

Start account recovery if you lost your API key. Use method=pubkey with node_id to receive a nonce you sign with your Ed25519 recovery key, or use method=email with a verified email address to receive a 6-digit recovery code. No authentication required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailNoRequired for method=email. Must match a verified email already on the node.
methodYesRecovery method. Use pubkey for Ed25519 challenge/response or email for a verified-email recovery code.
node_idNoRequired for method=pubkey. Your node ID (UUID from the original bootstrap response).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed4 schema fields changed
    • addedInput schema / properties / email
      Added value: +{
      +  "description": "Required for method=email. Must match a verified email already on the node.",
      +  "type": "string"
      +}
    • addedInput schema / properties / method
      Added value: +{
      +  "description": "Recovery method. Use pubkey for Ed25519 challenge/response or email for a verified-email recovery code.",
      +  "enum": [
      +    "pubkey",
      +    "email"
      +  ],
      +  "type": "string"
      +}
    • changedInput schema / properties / node_id / description
      Previous value: -"Your node ID (UUID from the original bootstrap response)."New value: +"Required for method=pubkey. Your node ID (UUID from the original bootstrap response)."
    • changedInput schema / required
      Previous value: -[
      -  "node_id"
      -]New value: +[
      +  "method"
      +]
  2. Added

TDQS

A4.3/5.0
Behavior4/5

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

With all annotations being false, the description compensates by stating 'No authentication required' and describing the expected outputs (a nonce for pubkey, a 6-digit recovery code for email). This adds behavioral context beyond the annotations, though it does not fully articulate server-side side effects or error conditions.

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 two sentences, front-loaded with the primary purpose, then immediately providing actionable method-specific guidance. Every sentence contributes value with no redundancy, achieving excellent conciseness.

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 lacking an output schema, the description explicitly tells the caller what they will receive for each method (nonce or recovery code) and the prerequisites (verified email, node ID). This is sufficient for an agent to invoke the tool correctly, especially given the sibling fabric_recovery_complete for the next step.

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?

The schema covers all parameters with descriptions (100% coverage), so the baseline is 3. The description reinforces the relationships between method and the other parameters but does not add substantially new semantic information beyond what the schema already provides.

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 precisely states 'Start account recovery if you lost your API key', using a specific verb and resource. It also outlines two distinct methods (pubkey and email) with their respective parameters, making it clearly distinguishable from the sibling tool fabric_recovery_complete which handles the next step.

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 provides clear use cases (when you lost your API key) and detailed instructions for each method, including requirements like node_id for pubkey and a verified email for email. It does not explicitly mention when not to use this tool or alternatives, but the context is clear enough to guide 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.