Shopify Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Shopify Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Open-source Model Context Protocol (MCP) server for Shopify Admin API. Works with Claude Code, Cursor, OpenClaw, and any MCP-compatible client.
# Clone and setup
git clone https://github.com/karangoyal/shopify-mcp-server.git
cd shopify-mcp-server
npm install
# Configure
cp .env.example .env
# Edit .env with your Shopify credentials
# Build
npm run buildAdd to your Claude Code settings:
{
"mcpServers": {
"shopify": {
"command": "node",
"args": ["/path/to/shopify-mcp-server/dist/index.js"],
"env": {
"SHOPIFY_SHOP": "your-store.myshopify.com",
"SHOPIFY_ACCESS_TOKEN": "your_token_here"
}
}
}
}Search for products by query string.
{
"query": "t-shirt",
"limit": 10
}Get detailed product information.
{
"id": "gid://shopify/Product/123456"
}Update product details.
{
"id": "gid://shopify/Product/123456",
"title": "New Title",
"tags": ["new", "featured"],
"status": "ACTIVE"
}Get recent orders.
{
"status": "open",
"limit": 10
}Get metafields for a product or shop.
{
"ownerType": "PRODUCT",
"ownerId": "gid://shopify/Product/123456",
"namespace": "custom"
}Create or update a metafield.
{
"ownerType": "PRODUCT",
"ownerId": "gid://shopify/Product/123456",
"namespace": "custom",
"key": "warranty",
"value": "2 years",
"type": "single_line_text_field"
}List all themes in the store.
{}Read a theme file (Liquid, CSS, JS).
{
"themeId": "gid://shopify/Theme/123456789",
"filename": "sections/header.liquid"
}Edit a theme file directly.
{
"themeId": "gid://shopify/Theme/123456789",
"filename": "assets/custom.css",
"content": "/* Your CSS here */"
}| Variable | Required | Description |
|---|---|---|
SHOPIFY_SHOP | Yes | Store domain (e.g., mystore.myshopify.com) |
SHOPIFY_ACCESS_TOKEN | Yes | Admin API access token |
SHOPIFY_API_VERSION | No | API version (default: 2024-01) |
MIT — See LICENSE file
PRs welcome. This is an open-source alternative to commercial MCP offerings.
Built by Karan Goyal | Open-source Shopify tooling
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.