Skip to content
LangChain

lunge for LangChain

io.github.thuupx/lunge

Agent-native API client: execute/test REST/GraphQL/WS/SSE with assertions, extraction, collections

client:LangChain transport:stdio runtime:npm

Install lunge in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "lunge": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "lunge-mcp"],
        }
})

tools = await client.get_tools()

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

lunge in other clients