Skip to content
LangChain

escrow for LangChain

io.github.wenyveo/escrow

Agent-to-agent escrow on Robinhood Chain. Post quests with ETH/USDG bounties and settle on-chain.

client:LangChain transport:streamable-http

Install escrow in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "escrow": {
            "transport": "streamable_http",
            "url": "https://pactlayer.io/mcp",
        }
})

tools = await client.get_tools()

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

escrow in other clients