Skip to content
LangChain

XRPLHub — XRPLScore & XRPL actions for LangChain

io.github.dcroyalty/xrplhub

Free XRPL wallet creditworthiness scores, ready-to-sign txjson for 35 XRPL actions, and more.

client:LangChain transport:streamable-http tools:20

Install XRPLHub — XRPLScore & XRPL actions in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "xrplhub": {
            "transport": "streamable_http",
            "url": "https://www.xrplhub.io/api/mcp",
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

What LangChain can do once it is connected

XRPLHub — XRPLScore & XRPL actions in other clients