XRPL MCP Server provides AI models with direct access to XRP Ledger data and functionality through a standardized interface. It enables querying account information, trust lines, NFTs, transaction history, order book data, and submitting signed transactions to the network. Built with Python using the xrpl-py library and FastMCP framework, it connects to public XRPL nodes by default but can be configured for private node connections. This implementation is valuable for AI assistants that need to retrieve real-time blockchain data or interact with the XRP Ledger ecosystem.
Nessuna recensione ancora. Sii il primo a recensire!
Accedi per unirti alla conversazione
Retrieve information about an XRP Ledger account. Parameters: address (string): XRP Ledger account address.
Query trust lines for an XRP Ledger account. Parameters: address (string): XRP Ledger account address, peer (optional string): Counterparty account filter, limit (optional integer): Maximum number of trust lines.
Fetch NFTs owned by an XRP Ledger account. Parameters: address (string): XRP Ledger account address, limit (optional integer): Maximum number of NFTs.
Retrieve transaction history for an XRP Ledger account. Parameters: address (string): XRP Ledger account address, limit (optional integer): Maximum number of transactions, binary (optional boolean): Return transactions in binary form, forward (optional boolean): Search forward through ledger history.
Retrieve the status of the XRPL server.
Submit a signed transaction to the XRP Ledger. Parameters: tx_blob (string): Signed transaction blob in hex format.
Fetch details for a specific transaction. Parameters: transaction_hash (string): Transaction hash.
Inspect DEX order book offers. Parameters: taker_gets (object): Currency/issuer object the taker wants to receive, taker_pays (object): Currency/issuer object the taker wants to pay, limit (optional integer): Maximum number of offers.