Skip to content
LangChain

Recipes MCP by UnClick for LangChain

io.github.malamutemayhem/meal

Recipes tools for recipes, meals, cooking by UnClick.

client:LangChain transport:stdio runtime:npm

Install Recipes MCP by UnClick in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Recipes MCP by UnClick in other clients