Hey Harper multi-store Shopify MCP server
Provides tools to list configured stores, pull unfulfilled orders for a single store, and pull unfulfilled orders across all stores with normalized and enriched order data (e.g., parsed release hold, Everstox flags, per-line out-of-stock indicators) and per-store error isolation.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Hey Harper multi-store Shopify MCP serverpull all unfulfilled orders across all stores that are late or need attention"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Hey Harper multi-store Shopify MCP server
A tiny remote MCP server that holds all five Hey Harper stores' permanent Shopify Admin API tokens and pulls unfulfilled / needs-attention candidate orders across every store in one connection — no switch-shop, no per-store OAuth re-auth. This is what makes the daily "orders requiring attention" report runnable unattended.
Why this exists
The official Shopify connector holds one store at a time and forces an OAuth re-authorization on every store switch — impossible to automate for a scheduled job. This server sidesteps that entirely by using custom-app Admin API tokens (permanent, no OAuth) and querying all stores directly.
Related MCP server: Shopify MCP
Tools it exposes
Tool | What it does |
| Lists the stores currently configured (domain + token both set). |
| Pulls unfulfilled orders for one store ( |
| The main one. Pulls unfulfilled orders across ALL stores in a single call, with per-store error isolation. |
It returns each order normalized and enriched (parsed released_hold_at, Everstox tag flags, per-line oos) but deliberately does not decide "needs attention" — the business-day lateness threshold, the OOS rule (EU/UK/BR/MX only), and the Everstox exclusions stay in your Cowork task so you can tweak thresholds and add holiday calendars without redeploying.
Setup — step by step
1. Create a custom app + token in EACH store
In every Hey Harper store admin (US, EU, UK, BR, MX):
Settings → Apps and sales channels → Develop apps → Create an app (name it e.g.
cowork-unfulfilled-reader).Configure Admin API scopes and enable (read-only is enough):
read_ordersread_all_orders(lets you query orders older than 60 days)read_productsread_inventoryread_fulfillmentsread_merchant_managed_fulfillment_orders
Install app, then under API credentials reveal the Admin API access token (
shpat_…). Copy it.Note the store's myshopify domain (e.g.
hey-harper-shop-uk.myshopify.com).
You'll end up with five (domain, token) pairs. Never commit these or paste them into a chat — they go straight into the host's secret store in step 3.
2. Deploy the server
The repo ships a Dockerfile, so any container host works (Render, Railway, Fly.io, a VPS). It must have normal internet access and a public HTTPS URL.
Render (example, simplest):
New → Web Service → connect this repo (or "Deploy from a Dockerfile").
Render auto-detects the Dockerfile. No build/start command needed.
It provides HTTPS + a public URL automatically.
Fly.io / Railway: point them at the Dockerfile the same way.
Local test:
npm install
npm run build
MCP_AUTH_TOKEN=$(openssl rand -hex 32) HH_UK_DOMAIN=hey-harper-shop-uk.myshopify.com HH_UK_TOKEN=shpat_xxx npm start
# health check:
curl localhost:3000/health3. Set environment secrets on the host
Copy .env.example for reference and set these in your host's env/secrets UI:
MCP_AUTH_TOKEN— a long random string (openssl rand -hex 32). Set this — it's the bearer token protecting your endpoint.HH_US_DOMAIN/HH_US_TOKEN,HH_EU_*,HH_UK_*,HH_BR_*,HH_MX_*— the pairs from step 1.
A store only goes live when both its domain and token are set, so you can start with UK and add the rest as you generate tokens.
4. Add it to Claude as a custom connector
In claude.ai → Settings → Connectors → Add custom connector:
URL:
https://<your-host>/mcpAuth: provide the bearer token (
MCP_AUTH_TOKEN) so requests sendAuthorization: Bearer <token>.
If the connector UI can't attach a static header in your plan, an alternative is to set
MCP_PATHto an unguessable path (e.g./mcp/9f3c…) and use that as the URL — the secret path then acts as the credential. Bearer token is preferred where supported.
Once connected, heyharper_list_stores, heyharper_pull_store_orders, and heyharper_pull_all_stores appear as tools.
5. Wire up the daily report
Point your daily 9am Cowork task at heyharper_pull_all_stores, then apply the classification logic (kept in the task, per the handoff spec):
clock = releasedHoldAt if hasReleasedHold else processedAt
late = business_days_since(clock) >= 2 (weekends excluded, warehouse TZ)
shop_oos = anyLineOos (only where storeAppliesOos)
excluded = hasOosEverstox OR (hasHoldEverstox AND NOT hasReleasedHold)
OR (hasSetOnHold AND NOT hasReleasedHold)
needs_attention = (late OR shop_oos) AND NOT excludedPost the roll-up to #daily-unfulfilled.
Security notes
Tokens live only in the host's env/secrets — never in the repo (
.envis gitignored).Always set
MCP_AUTH_TOKENbefore exposing the URL publicly; the server logs a warning if it's missing.All tools are read-only (
read_*scopes only) — the server cannot modify your stores.
Environment variables
Var | Required | Default | Notes |
| recommended | — | Bearer token for the endpoint. If unset, endpoint is open. |
| no |
| Endpoint path. |
| no |
| Usually set by the host. |
| no |
| Admin API version. |
| per store | — | KEY ∈ US, EU, UK, BR, MX. |
| per store | — |
|
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceMCP server exposing Shopify commerce backend with ~22 typed tools for orders, inventory, logistics, and fulfillment, including read/write separation and structured errors.
- AlicenseNot gradedqualityBmaintenanceA read-only MCP server that exposes the full Shopify Admin GraphQL API through 6 universal tools, with multi-store support and mutation rejection at the parser level for safety.MIT
- AlicenseNot gradedqualityDmaintenanceMCP server for Shopify Admin API. Enables product, order, customer, and inventory management via natural language.81MIT
- FlicenseNot gradedqualityCmaintenanceHosted MCP server connecting Shopify, Klaviyo, GA4, Meta Ads, Google Ads, Xero, Gorgias and 20+ e-commerce data sources so AI assistants can answer merchant questions that span every source at once.
Related MCP Connectors
Official remote MCP server for Color Me Shop.
MCP server for interacting with the Supabase platform
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/diogoferacruz-dev/heyharper-shopify-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server