Skip to content
LangChain

tacobell for LangChain

io.github.markswendsen-code/tacobell

MCP server for Taco Bell - browse menu, customize orders, place pickup

client:LangChain transport:stdio runtime:npm

Install tacobell in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

tacobell in other clients