Back to Browse

Shopify Store Builder MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

MCP server for building Shopify stores via the Admin GraphQL API: themes, pages, and navigation

About

MCP server for building Shopify stores via the Admin GraphQL API: themes, pages, and navigation

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.

12 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

file_system

Check that this permission is expected for this type of plugin.

Shell Command Execution

Runs commands on your machine. Be cautious — only use if you trust this plugin.

What You'll Need

Set these up before or after installing:

Store domain, e.g. my-store.myshopify.comOptional

Environment variable: SHOPIFY_STORE_DOMAIN

Dev Dashboard app client ID (option A, recommended)Optional

Environment variable: SHOPIFY_CLIENT_ID

Dev Dashboard app client secret (option A, recommended)Required

Environment variable: SHOPIFY_CLIENT_SECRET

Permanent admin access token shpat_… (option B, instead of client credentials)Required

Environment variable: SHOPIFY_ADMIN_ACCESS_TOKEN

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-nazariinalyvaikobs-shopify-store-builder-mcp": {
      "env": {
        "SHOPIFY_CLIENT_ID": "your-shopify-client-id-here",
        "SHOPIFY_STORE_DOMAIN": "your-shopify-store-domain-here",
        "SHOPIFY_CLIENT_SECRET": "your-shopify-client-secret-here",
        "SHOPIFY_ADMIN_ACCESS_TOKEN": "your-shopify-admin-access-token-here"
      },
      "args": [
        "-y",
        "shopify-store-builder-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

shopify-store-builder-mcp

MCP server for building Shopify stores with AI. Gives Claude Code, Cursor, and other MCP clients tools to edit themes, pages, and navigation on one Shopify store via the Admin GraphQL API.

Credentials stay on your machine. The server runs locally and talks directly to Shopify.

Demo

https://github.com/user-attachments/assets/afd71d46-e8d7-4c06-96dc-094cae3fe5a2

Quick start

https://github.com/user-attachments/assets/175e5051-b6ec-4201-a33e-d27c68356171

npx -y shopify-store-builder-mcp init

The wizard asks for your store credentials, verifies the connection, and registers the server in the client you pick:

  • Claude Code
  • Codex CLI
  • Gemini CLI
  • Claude Desktop
  • Cursor
  • Windsurf
  • VS Code (Copilot)

Pick "Other" to print a config entry for any other MCP client.

Getting Shopify credentials

You need a store on a plan with Admin API access and one of:

Option A: Dev Dashboard app (recommended, tokens auto-refresh)

  1. Go to dev.shopify.com/dashboard and create an app for your store.
  2. Grant it the scopes: read_themes, write_themes, read_content, write_content, read_online_store_navigation, write_online_store_navigation.
  3. Copy the Client ID and Client Secret from the app's settings.

Option B: permanent admin access token

Use an existing shpat_… token from a custom app in your store admin (Settings → Apps and sales channels → Develop apps).

Manual configuration

If you skip the wizard, add this to your MCP client's config:

{
  "shopify-builder": {
    "command": "npx",
    "args": ["-y", "shopify-store-builder-mcp"],
    "env": {
      "SHOPIFY_STORE_DOMAIN": "your-store.myshopify.com",
      "SHOPIFY_CLIENT_ID": "…",
      "SHOPIFY_CLIENT_SECRET": "…"
    }
  }
}

Or with a permanent token, replace the client credentials with "SHOPIFY_ADMIN_ACCESS_TOKEN": "shpat_…".

Tools

ToolWhat it does
shop_get_infoRead store name, domain, plan, currency
theme_listList installed themes
theme_read_fileRead a theme file (Liquid, JSON, CSS, JS)
theme_update_fileCreate or update a theme file
page_listList store pages
page_createCreate a page
page_updateUpdate a page's title, body, or visibility
menu_listList navigation menus
menu_updateUpdate a navigation menu

Development

npm install
npm run dev     # run from source
npm run build   # compile to dist/
npm test

License

ISC

Reviews

No reviews yet

Be the first to review this server!