Skip to content
LangChain

farpy for LangChain

io.github.mangomunchr/farpy

FARPY routes GPU workloads to qualified compute and returns verified artifacts and receipts.

client:LangChain transport:streamable-http

Install farpy in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "farpy": {
            "transport": "streamable_http",
            "url": "https://api.farpy.com/mcp",
        }
})

tools = await client.get_tools()

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

farpy in other clients