Skip to content
LangChain

mcp server shopify for LangChain

io.github.aiwerk/mcp-server-shopify

Shopify Admin GraphQL API: products, orders, customers, inventory, and more (read and write).

client:LangChain transport:stdio runtime:npm

Install mcp server shopify in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

mcp server shopify in other clients