Skip to main content
Glama

Create Agent Wallet

create_agent_wallet

Generate a new XRPL keypair for an agent wallet, returning the address and seed. The wallet requires funding with at least 1 XRP to activate.

Instructions

Generate a new XRPL keypair for an agent wallet.

Returns the wallet address and seed. The wallet is NOT yet funded — to activate it on mainnet, send at least 1 XRP to the returned address (the base reserve). Owner reserves are 0.2 XRP per object held.

Funding options:

  • Receive XRP from another wallet (ask your operator or client to send 1 XRP)

  • Buy XRP on an exchange (Coinbase, Kraken, Binance) and withdraw to the address

  • On testnet, use the XRPL faucet: https://xrpl.org/xrp-testnet-faucet.html

Keep the seed secret — anyone with it controls the wallet.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations, the descripcion carries the full burden and does an excellent job: it explicitly says the wallet is not funded, explains base and owner reserves, lists funding methods, and warns that anyone with the seed controls the wallet. This is strong behavioral disclosure for a key-generation tool.

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 opening line states the core function immediately, followed by the critical unfunded status and security warning. The funding options are detailed but relevant and well-structured; every sentence adds useful context without padding.

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?

For a zero-parameter wallet creation tool with an output schema, the descripcion is complete: it explains what is returned, the mainnet funding requirement, reserve implications, funding paths, and seed security. An agent has everything needed to invoke it and understand the result.

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?

The tool has zero parameters, so there is no parameter info for the descripcion to add; baseline 4 applies. The descripcion appropriately focuses on return value and usage context instead of nonexistent parameters.

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?

Descripcion states the specific verb and resource: generate a new XRPL keypair for an agent wallet. It clearly differentiates from sibling wallet tools by emphasizing creation, return of address and seed, and its unfunded status.

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?

Descripcion makes the use case clear — generate a new agent wallet keypair — and provides practical next steps for funding. It does not explicitly name sibling alternatves like fund_xrpl_wallet_via_coinbase, but the context is sufficient for an agent to know when this tool applies.

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