A Shopify MCP Server built to interact with Mock.shop
Most payments and commerce work still happens through a UI a human drives. Shopify MCP Proxy & Mock Server (ShopifyMCPMockShop) MCP server moves it into the conversation instead. A Shopify MCP Server built to interact with Mock.shop.
This project implements a Model Context Protocol (MCP) server that acts as an intelligent bridge and proxy to Shopify's Storefront API. It uniquely supports mock.shop for safe development and testing without requiring real store credentials.
The server publishes 11 tools. What each one is for:
Cursor — ** ~/.cursor/mcp.json (or similar)getShopInfo — Fetches basic shop details (name, description, currency)getProductById — Fetches a specific product by ID. If includeImages is true, returns JSON details and the first image (75px) as a base64 ImageContentBlockfindProducts — Searches/filters products with pagination/sortinggetCollectionById — Fetches a specific collection by ID, optionally including productsfindCollections — Searches/filters collections with pagination/sortingcartCreate — Creates a new shopping cartcartLinesAdd — Adds line items to an existing shopping cartcartLinesUpdate — Updates line items (e.g., quantity) in an existing shopping cartcartLinesRemove — Removes line items from an existing shopping cartgetCart — Fetches the details of an existing shopping cart by IDConfiguration is passed through the environment: SHOPIFY_STORE, SHOPIFY_ACCESS_TOKEN, SHOPIFY_VERSION, ADMIN_ACCESS_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.
Plenty of payments and commerce servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Shopify MCP Proxy & Mock Server (ShopifyMCPMockShop)'s toolset — Cursor, getShopInfo, getProductById and 8 more — is a fair guide to whether it matches your workflow. It is maintained by ramakay; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| Cursor | ** ~/.cursor/mcp.json (or similar) |
| getShopInfo | Fetches basic shop details (name, description, currency). |
| getProductById | Fetches a specific product by ID. If includeImages is true, returns JSON details and the first image (75px) as a base64 ImageContentBlock. |
| findProducts | Searches/filters products with pagination/sorting. |
| getCollectionById | Fetches a specific collection by ID, optionally including products. |
| findCollections | Searches/filters collections with pagination/sorting. |
| cartCreate | Creates a new shopping cart. |
| cartLinesAdd | Adds line items to an existing shopping cart. |
| cartLinesUpdate | Updates line items (e.g., quantity) in an existing shopping cart. |
| cartLinesRemove | Removes line items from an existing shopping cart. |
| getCart | Fetches the details of an existing shopping cart by ID. |
{
"mcpServers": {
// ... other servers ...
"shopify-mcp": {
"command": "node",
"args": [
"/full/path/to/ShopifyMCPMockShop/dist/server.js"
],
"env": {
// Only needed if connecting to a REAL store:
// "SHOPIFY_STORE": "your-store.myshopify.com",
// "SHOPIFY_ACCESS_TOKEN": "your-storefront-token",
// "SHOPIFY_VERSION": "2025-04"
},
"disabled": false,
"alwaysAllow": []
}
// ... other servers ...
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| SHOPIFY_STORE | Configuration value read at startup. | Optional |
| SHOPIFY_ACCESS_TOKEN | Credential the server authenticates with. | Yes |
| SHOPIFY_VERSION | Configuration value read at startup. | Optional |
| ADMIN_ACCESS_TOKEN | Credential the server authenticates with. | Yes |
Payments infrastructure meets AI — customers, invoices, subscriptions and current API docs from Stripe's server.
Build for Shopify with current APIs — the official Dev MCP server for schema-accurate storefront and admin code.
Give your AI assistant a supervised window into your Interactive Brokers account — balances, positions, live quotes and orders.
Invoices, payments and disputes through PayPal's official server — commerce operations by conversation.
Enables querying and listing Azure resources and costs directly from an MCP client.
Empowers LLMs with Bitcoin Lightning Network payment capabilities via the ZBD API.