| name | shopify-ai-toolkit-wrapper |
| description | Integrate Shopify's AI Toolkit MCP server with Claude Code for GraphQL validation,
Liquid linting, and documentation search.
Use when setting up Shopify MCP integration, validating GraphQL queries,
or linting Liquid templates.
Trigger with phrases like "shopify ai toolkit", "shopify mcp",
"shopify claude integration", "shopify graphql validation", "shopify liquid lint".
|
| allowed-tools | Read, Write, Edit, Bash(npm:*), Grep |
| version | 2.7.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","ecommerce","shopify"] |
| compatibility | Designed for Claude Code |
Shopify AI Toolkit Wrapper
Overview
Shopify's AI Toolkit provides an official MCP (Model Context Protocol) server for developer workflows. This skill configures it for Claude Code, enabling GraphQL schema validation, Liquid template linting, and real-time Shopify documentation search without leaving your editor.
Prerequisites
- Node.js 18+ and npm/pnpm installed
- A Shopify store with a custom app or API access token
- Access scopes appropriate for your workflow (minimum:
read_products, read_themes)
- Claude Code with MCP support enabled
Instructions
Step 1: MCP Configuration
Create or update .mcp.json in your project root:
{
"mcpServers": {
"shopify": {
"command": "npx",
"args": [
"-y",
"@shopify/ai-toolkit-mcp"
],
"env": {
"SHOPIFY_ACCESS_TOKEN": "${SHOPIFY_ACCESS_TOKEN}",
"SHOPIFY_STORE_URL": "https://your-store.myshopify.com"
}
}
}
}
Note: The package name @shopify/ai-toolkit-mcp may change. Check shopify.dev/docs for the latest official MCP package name and configuration.