Skip to content
LangChain

mcp recipes for LangChain

io.github.smeet666/mcp-recipes

Search six recipe sites at once, in French, English and Spanish, and scale quantities.

client:LangChain transport:stdio runtime:npm

Install mcp recipes in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

mcp recipes in other clients