XRP Ledger Testnet MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| RPC_URL | No | WebSocket URL for XRP Ledger node | wss://s.altnet.rippletest.net:51233 |
| CHAIN_ID | No | Chain ID (not applicable for XRPL) | NA |
| XRP_NETWORK | No | Set to testnet or devnet (defaults to testnet) | testnet |
| IPFS_SERVICE | No | IPFS service to use (pinata, web3Storage, nftStorage) | pinata |
| PINATA_API_KEY | No | Pinata API key for IPFS uploads (optional) | |
| PINATA_SECRET_KEY | No | Pinata secret key for IPFS uploads (optional) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| xrp_get_chain_infoC | Get comprehensive XRP Ledger information including network status |
| xrp_get_balanceB | Get XRP balance for an address |
| xrp_get_transactionB | Get transaction details by hash |
| xrp_get_blockB | Get ledger (block) information by number |
| xrp_validate_addressB | Validate XRP address format |
| xrp_get_transaction_historyC | Get transaction history for an address |
| xrp_create_walletB | Generate new XRP wallet with address and keys |
| xrp_helpC | Get help and guidance for XRP MCP tools |
| xrp_search_toolsC | Search available tools by keyword |
| xrp_list_tools_by_categoryC | List tools organized by category |
| xrp_send_transactionB | Send XRP to another address |
| xrp_get_network_infoB | Get current XRP Ledger network configuration and connection status |
| xrp_get_gas_priceA | Get current transaction fee (gas) pricing in drops |
| xrp_estimate_feesC | Estimate transaction fees for different transaction types |
| xrp_get_mempool_infoA | Get open ledger (mempool) transaction statistics |
| xrp_generate_addressC | Generate new XRP addresses with optional derivation paths |
| xrp_get_wallet_infoC | Get comprehensive wallet information including balance, nonce, and transaction count |
| xrp_get_account_infoB | Get complete account information including balance and settings |
| xrp_import_walletB | Import an existing XRP wallet from seed |
| xrp_fund_testnet_accountA | Fund a testnet account with test XRP |
| xrp_set_account_settingsC | Configure account settings (transfer fees, flags, etc) |
| xrp_create_trustlineB | Create a trustline to hold a custom token |
| xrp_send_tokenC | Send custom token to another account |
| xrp_get_trustlinesA | Get all trustlines for an account |
| xrp_remove_trustlineB | Remove a trustline (set limit to 0) |
| xrp_get_token_balanceA | Get custom token (trustline) balance for an account |
| xrp_get_token_infoC | Get token metadata and issuer information |
| xrp_transfer_tokenC | Transfer custom tokens between accounts |
| xrp_approve_tokenC | Set token spending authorization (trustline management) |
| xrp_get_token_allowanceB | Get token trustline limit (spending allowance) |
| xrp_mint_nftC | Mint a new NFT on XRP Ledger |
| xrp_burn_nftB | Burn an NFT you own |
| xrp_create_nft_offerB | Create buy or sell offer for NFT |
| xrp_accept_nft_offerA | Accept an NFT buy or sell offer |
| xrp_get_nftsB | Get all NFTs owned by an account |
| xrp_create_escrowB | Create time or condition-locked escrow |
| xrp_finish_escrowB | Complete an escrow and release funds |
| xrp_cancel_escrowB | Cancel an expired escrow |
| xrp_get_escrowsB | Get all escrows for an account |
| xrp_place_orderC | Place a buy or sell order on the DEX |
| xrp_cancel_orderB | Cancel an existing DEX order |
| xrp_get_offersC | Get open offers for an account |
| xrp_get_order_bookC | Get order book depth for a currency pair |
| xrp_get_amm_infoC | Get info about an AMM pool |
| xrp_get_ledger_entryB | Get specific ledger entry by ID |
| xrp_get_account_objectsC | Get all objects owned by an account |
| xrp_subscribeB | Subscribe to real-time ledger updates |
| xrp_decode_transactionB | Decode a transaction blob |
| xrp_get_conversation_guidanceB | Get conversation prompts and guidance for specific XRP operations |
| xrp_generate_nft_imageB | Generate AI image for NFT using free APIs (FLUX.1, Stable Diffusion, Playground AI) |
| xrp_mint_nft_with_ipfsB | Create NFT with IPFS storage for images and metadata (Enhanced version of xrp_mint_nft) |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 51 tools
Several tools have nearly identical purposes, such as send_token vs transfer_token, get_wallet_info vs get_account_info, get_chain_info vs get_network_info, and get_gas_price vs estimate_fees. Even with descriptions, these overlaps make it difficult for an agent to reliably pick the right tool.
All tool names follow the same xrp_ prefix with snake_case and a consistent verb_noun structure (e.g., xrp_create_escrow, xrp_finish_escrow, xrp_cancel_escrow). No mixing of conventions, making the naming highly predictable.
With 51 tools, the server is overstuffed. Many tools are redundant variants of the same operation (e.g., send_token/transfer_token, mint_nft/mint_nft_with_ipfs), inflating the count without adding genuine functionality. A leaner set would be more effective.
The toolset covers major XRP Ledger areas (wallets, transactions, escrow, DEX, NFTs, tokens), but missing key operations like AMM creation/swapping, payment channels, and checks. The redundancy doesn't address these gaps, leaving notable holes in advanced functionality.