Skip to content
LangChain

agentic-pay for LangChain

io.github.shieldcubed/agentic-pay

Non-custodial payment engine for AI agents — BTC, ETH, USDT, USDC, XRP, XMR, ZEC.

client:LangChain transport:stdio runtime:npm

Install agentic-pay in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "agentic-pay": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@shieldcubed/agentic-pay"],
        }
})

tools = await client.get_tools()

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

agentic-pay in other clients