Skip to content
LangChain

Shopify for LangChain

io.github.pipeworx-io/shopify

Shopify MCP Pack — wraps the Shopify Admin REST API (2024-01)

client:LangChain transport:streamable-http

Install Shopify in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "shopify": {
            "transport": "streamable_http",
            "url": "https://gateway.pipeworx.io/shopify/mcp",
        }
})

tools = await client.get_tools()

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

Shopify in other clients