MCP.so
登录

XRPL MCP Server

@lgcarrier

关于 XRPL MCP Server

XRP Ledger MCP Server

基本信息

分类

其他

运行时

python

传输方式

stdio

发布者

lgcarrier

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "xrpl-mcp-server": {
      "command": "python3",
      "args": [
        "-m",
        "venv",
        ".venv"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is XRPL MCP Server?

An MCP server that gives AI assistants structured access to XRP Ledger data and network actions. It connects to an XRPL JSON‑RPC endpoint and provides read-only queries plus signed transaction submission. Designed for Python 3.10+ environments and integrates with MCP‑compatible hosts such as Claude Desktop.

How to use XRPL MCP Server?

Install the published package via pip install iflow-mcp_lgcarrier-xrpl-mcp-server or clone from source and pip install -e ".[dev]". Optionally set the XRPL_NODE_URL environment variable to point to mainnet (default) or testnet. Run directly with python -m xrpl_mcp_server or the installed CLI xrpl-mcp-server. To register with Claude Desktop, use mcp install src/xrpl_mcp_server/server.py:mcp --with-editable ..

Key features of XRPL MCP Server

  • Get account balances and sequence numbers
  • Query trust lines and issued currencies
  • View NFTs owned by an account
  • Retrieve account transaction history
  • Fetch individual transaction details
  • Inspect DEX order book offers
  • Retrieve XRPL server status
  • Submit signed transactions

Use cases of XRPL MCP Server

  • An AI assistant answers a user’s XRP balance and account sequence
  • A chatbot shows the last N transactions for a given XRPL address
  • An analyst inspects DEX order book offers for a currency pair
  • A developer verifies an NFT collection by querying account NFTs
  • A trading bot submits a signed payment or trust‑set transaction

FAQ from XRPL MCP Server

What Python version does XRPL MCP Server require?

Python 3.10 or newer.

How do I configure which XRPL node the server connects to?

Set the XRPL_NODE_URL environment variable to a valid XRPL JSON‑RPC endpoint. The default is Ripple’s public mainnet (https://s1.ripple.com:51234/).

Does the server submit real transactions by default?

Yes, when using the default endpoint, the submit_transaction tool broadcasts a signed transaction to the live XRP Ledger mainnet. For testing, set XRPL_NODE_URL to the XRPL testnet before launching.

What happens when a tool cannot find the requested data?

The server returns an MCP tool error with a descriptive message, e.g., “Account … not found on the ledger” for missing accounts or “Submitting transaction failed: …” for submission errors.

Does the server require any authentication or special transport?

No. It connects to the configured XRPL JSON‑RPC endpoint with no additional authentication, and communicates with the AI host via the standard MCP protocol (typically stdio).

评论

其他 分类下的更多 MCP 服务器