Allows for Shopify order management, including creating new orders with customer information and line items, as well as retrieving detailed order status using the Shopify Admin REST API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Shopify MCP Servercheck the status of order 1025"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Shopify MCP Server
A Model Context Protocol (MCP) server for Shopify order management using the official MCP Python SDK.
Features
β MCP-Compliant: Follows official MCP specification
π οΈ Two Tools: Create orders and check order status via Shopify Admin REST API
π Remote Access: SSE transport for cloud deployment
π Secure: Environment-based credential management
Available Tools
1. create_order
Create new Shopify orders with line items and customer information.
Parameters:
line_items(array, required): Product items to ordercustomer_email(string, optional): Customer emailfinancial_status(string, optional): Payment status (default: "pending")test(boolean, optional): Create as test order (default: true)
2. get_order_status
Retrieve complete order details by order ID.
Parameters:
order_id(integer, required): Shopify order ID
Quick Start
Prerequisites
Python 3.10 or higher
Shopify Admin API access token
Shopify store URL
Local Setup
# Clone the repository
cd mcp-server
# Create and activate virtual environment (recommended)
python -m venv mcpserver
mcpserver\Scripts\activate # Windows
# source mcpserver/bin/activate # macOS/Linux
# Install dependencies
pip install -r requirements.txt
# Configure environment variables
# Create .env file with:
SHOPIFY_ADMIN_API_BASE_URL=https://your-store.myshopify.com/admin/api/2025-07
SHOPIFY_ACCESS_TOKEN=your_access_token_here
USE_DUMMY_RESPONSES=true # Optional: returns mock data when API fails (for testing)
# Run the server
python shopify_mcp_server.pyTesting Mode (Dummy Responses)
For development and testing without valid Shopify credentials, enable dummy response mode:
# In .env file
USE_DUMMY_RESPONSES=trueWhen enabled:
β API errors return realistic mock data instead of error messages
β Test tools without valid Shopify store credentials
β See what successful responses look like
β All responses include
"dummy_mode": trueflag
Demo:
python demo_dummy_responses.pyExample dummy response:
{
"success": true,
"dummy_mode": true,
"order_id": 9999999999,
"order_number": 1001,
"financial_status": "paid",
"total_price": "79.97",
"note": "This is a dummy response for testing purposes"
}Disable for production:
USE_DUMMY_RESPONSES=false # or remove the variable entirelyUsage with MCP Clients
Claude Desktop Integration
Add to your Claude Desktop configuration file:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"shopify": {
"command": "python",
"args": ["C:\\path\\to\\mcp-server\\shopify_mcp_server.py"],
"env": {
"SHOPIFY_ADMIN_API_BASE_URL": "https://your-store.myshopify.com/admin/api/2025-07",
"SHOPIFY_ACCESS_TOKEN": "your_access_token_here"
}
}
}
}Restart Claude Desktop, and you'll see the Shopify tools available.
MCP Inspector (Testing)
Test your server with the official MCP Inspector:
npx @modelcontextprotocol/inspector python shopify_mcp_server.pyThis opens a web interface to test tool discovery and execution.
Remote Deployment
The server uses SSE (Server-Sent Events) transport for remote access, making it compatible with cloud platforms.
Railway Deployment
Fork/Clone this repository
Connect to Railway:
Go to Railway.app
Click "New Project" β "Deploy from GitHub repo"
Select this repository
Set Environment Variables in Railway dashboard:
SHOPIFY_ADMIN_API_BASE_URL=https://your-store.myshopify.com/admin/api/2025-07 SHOPIFY_ACCESS_TOKEN=your_access_token_hereDeploy: Railway auto-deploys from
Procfile
Your MCP server will be available at: https://your-app.up.railway.app
Render Deployment
Connect GitHub repo to Render
Create new Web Service
Set environment variables
Set start command:
python shopify_mcp_server.py
Other Platforms (Fly.io, Heroku, etc.)
The server works on any platform supporting Python web services. Use the start command:
python shopify_mcp_server.pyTransport Options
The server supports two transport modes (configured in code):
# SSE Transport (remote access, default)
mcp.run(transport="sse")
# STDIO Transport (local only, for Claude Desktop)
mcp.run(transport="stdio")Current configuration: SSE (remote deployment)
Environment Variables
Variable | Description | Example |
| Shopify Admin API endpoint |
|
| Admin API access token |
|
| Enable mock responses for testing (optional) |
|
Security Best Practices
β οΈ Important Security Notes:
Never commit
.envfiles to version control (already in.gitignore)Use environment variables on hosting platforms
Rotate access tokens regularly
Enable HTTPS in production (automatic on Railway/Render)
Restrict API scopes to minimum required permissions
Troubleshooting
"SHOPIFY_ACCESS_TOKEN not set"
Verify
.envfile exists and contains the tokenCheck environment variables in your deployment platform
"Order not found" (404)
Verify the order ID is correct (use numeric ID, not order number)
Check API access token has permission to read orders
Tools not appearing in Claude Desktop
Verify configuration file path is correct
Check Python path in the
commandfieldRestart Claude Desktop after config changes
Check Claude Desktop logs for errors
Development
Project Structure
mcp-server/
βββ shopify_mcp_server.py # Main MCP server
βββ requirements.txt # Python dependencies
βββ .env # Local environment variables (gitignored)
βββ Procfile # Railway/Heroku deployment
βββ README.md # This fileTesting
Use MCP Inspector for development testing:
npx @modelcontextprotocol/inspector python shopify_mcp_server.pyResources
License
MIT
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.