Skip to content
LangChain

shop mcp for LangChain

io.github.hello532/shop-mcp

Read-only Shopify catalogue and stock for LLM agents. Stdlib only, no dependencies.

client:LangChain transport:stdio runtime:pypi

Install shop mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

shop mcp in other clients