Prerequisites
- Cursor IDE or VS Code with AI assistant
- Shopify Dev MCP installed in your IDE
- A Superdesign project with your theme designs
Install Shopify Dev MCP
Install the Shopify Dev MCP server in your IDE to enable Liquid validation and Shopify-specific code assistance.For Cursor, add this to your MCP settings (
.cursor/mcp.json):Export HTML from Superdesign
- Open your Superdesign project
- Select all the frames you want to include in your theme (homepage, product page, collection page, cart, etc.)
- Click Export Code and download the HTML files
Convert to Shopify Theme
Open your IDE in the folder containing your exported HTML files, then use this prompt:The AI will:
- Create the standard Shopify theme folder structure (
assets/,config/,layout/,locales/,sections/,snippets/,templates/) - Convert your HTML into Liquid templates with proper Shopify objects
- Add customizable section settings for the theme editor
- Validate the theme using the Shopify Dev MCP
Example Frame-to-Template Mapping
| Superdesign Frame | Shopify Template |
|---|---|
index | templates/index.json |
product | templates/product.json |
collection | templates/collection.json |
cart | templates/cart.json |
page | templates/page.json |
blog | templates/blog.json |
article | templates/article.json |