Provides direct access to XRP Ledger data and functionality, enabling querying account information, transaction history,...
Created byApr 23, 2025
XRPL MCP Server
A Model Context Protocol (MCP) server that provides AI models with access to XRP Ledger data and functionality.
Overview
XRPL MCP Server acts as a bridge between large language models (LLMs) like Claude and GPT and the XRP Ledger. It enables AI models to retrieve account information from the XRP Ledger through a standardized API interface.
Features
Get account information (balance, sequence number)
Query trust lines and issued currencies
View NFTs owned by accounts
Retrieve transaction history
Access order book data from the DEX
Submit signed transactions to the network
Get server status information
Reliable XRP Ledger data access through MCP
Easy integration with MCP-compatible AI applications
Installation
From Source
Clone this repository:
```
git clone https://github.com/lgcarrier/xrpl-mcp-server.git
cd xrpl-mcp-server
```
Create and activate a virtual environment:
```
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
```