Skip to content
LangChain

wayforth for LangChain

io.github.wayforthofficial/wayforth

Search engine and payment rail for AI agents. 2,300+ services, semantic ranking.

client:LangChain transport:stdio runtime:pypi

Install wayforth in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "wayforth": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["wayforth-mcp"],
        }
})

tools = await client.get_tools()

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

wayforth in other clients