Skip to content
LangChain

costco for LangChain

io.github.thehesiod/costco

MCP server for Costco warehouse receipts and online orders

client:LangChain transport:stdio runtime:pypi

Install costco in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

costco in other clients