drio
Open app

xrpl-mcp

Source

An XRP Ledger Model Context Protocol (MCP) server enables secure, controlled interactions between Large Language Models (LLMs) and the XRP Ledger, facilitating tasks such as transaction submissions and ledger queries.

Catalog onlyCatalog onlySTDIO

Overview

xrpl-mcp is a Python-based Model Context Protocol (MCP) server that facilitates secure interactions between Large Language Models (LLMs) and the XRP Ledger, enabling tasks such as transaction submissions and ledger queries.

To use xrpl-mcp, clone the repository from GitHub, install the required dependencies, and run the MCP server using the provided command.

  • Query XRP account information including balances, sequence, and ledger index. - Integrates seamlessly with MCP-compatible AI tools for enhanced functionality.
  1. Submitting transactions to the XRP Ledger through AI-driven applications.
  2. Querying account balances and transaction history for automated reporting.
  3. Enabling AI models to interact with blockchain data securely.

Add to your AI client

Use these steps to connect xrpl-mcp in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "xrpl-mcp-tedlikeskix": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-xrpl-mcp-tedlikeskix"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "xrpl-mcp-tedlikeskix": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-xrpl-mcp-tedlikeskix"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "xrpl-mcp-tedlikeskix": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-xrpl-mcp-tedlikeskix"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "xrpl-mcp-tedlikeskix": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-xrpl-mcp-tedlikeskix"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "xrpl-mcp-tedlikeskix": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-xrpl-mcp-tedlikeskix"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "xrpl-mcp-tedlikeskix": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-xrpl-mcp-tedlikeskix"
      ]
    }
  }
}

FAQ

What programming language is xrpl-mcp built with?

xrpl-mcp is built using Python.

Can I use xrpl-mcp with any AI tool?

Yes, xrpl-mcp is designed to integrate with any MCP-compatible AI tools.

Is there any cost associated with using xrpl-mcp?

No, xrpl-mcp is open-source and free to use.