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.
暂无评论. 成为第一个评论的人!
登录以参与讨论
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 (string, optional) - Counterparty account filter, limit (integer, optional) - Maximum number of trust lines.
Fetch NFTs owned by an XRP Ledger account. Parameters: address (string) - XRP Ledger account address, limit (integer, optional) - Maximum number of NFTs.
Retrieve transaction history for an XRP Ledger account. Parameters: address (string) - XRP Ledger account address, limit (integer, optional) - Maximum number of transactions, binary (boolean, optional) - Return transactions in binary form, forward (boolean, optional) - Search forward through ledger history.
Retrieve the status information of the XRPL server.
Submit a signed transaction to the XRP Ledger. Parameters: tx_blob (string) - Signed transaction blob in hex format.
Fetch detailed information about a specific transaction. Parameters: transaction_hash (string) - Transaction hash.
Retrieve 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 (integer, optional) - Maximum number of offers.