Shopify MCP Server
Overview
Shopify MCP Server is a Model Context Protocol (MCP) server that facilitates integration with the Shopify API, enabling AI agents to interact with Shopify stores through a standardized protocol.
To use the Shopify MCP Server, follow these steps:
- Install dependencies using
npm install. - Create a
.envfile with your Shopify credentials. - Build the project with
npm run build. - Start the server using
npm start. For development, you can run in development mode with hot reloading usingnpm run devand run tests withnpm test.
- Integration with the Shopify API. - MCP-compliant server implementation. - Tools for product management. - Resource access for store data. - Prompt templates for common operations.
- Automating product management tasks in Shopify stores.
- Enabling AI-driven interactions with Shopify store data.
- Streamlining operations for developers working with Shopify APIs.
Add to your AI client
Use these steps to connect Shopify MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"shopify-mcp-server-sarayd": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-shopify-mcp-server-sarayd"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"shopify-mcp-server-sarayd": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-shopify-mcp-server-sarayd"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"shopify-mcp-server-sarayd": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-shopify-mcp-server-sarayd"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"shopify-mcp-server-sarayd": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-shopify-mcp-server-sarayd"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"shopify-mcp-server-sarayd": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-shopify-mcp-server-sarayd"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"shopify-mcp-server-sarayd": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-shopify-mcp-server-sarayd"
]
}
}
}FAQ
What is the purpose of the Shopify MCP Server?
The server allows AI agents to interact with Shopify stores using a standardized protocol, simplifying integration and management tasks.
Is there a license for using Shopify MCP Server?
Yes, the project is licensed under the MIT License, allowing for open use and modification.