feat(shopify): add read-only Shopify Admin GraphQL API MCP#520
Merged
Conversation
Adds a new Shopify MCP server with read-only access to products, collections, orders, customers, inventory, fulfillment, discounts, online store content, B2B, markets, Shopify Payments, and ShopifyQL analytics. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
shopify/) with read-only access to the Shopify Admin GraphQL APIregistry.jsonwith public listing and OAuth support, deployed viadeploy.jsononkubernetes-bunTest plan
bun run checkinshopify/to verify TypeScript typesbun run validate:queriesto validate GraphQL queriesbun testinshopify/to execute unit tests🤖 Generated with Claude Code
Summary by cubic
Adds a new read-only MCP server for the Shopify Admin GraphQL API under
shopify/, exposing tools for catalog, orders, customers, inventory, fulfillment, discounts, content, B2B/markets, Shopify Payments, and ShopifyQL analytics. Publicly registered with OAuth and wired for deployment onkubernetes-bun.New Features
2026-07; all tools are GraphQL queries (no mutations).shopify/workspace withserver/,TOOLS.md,README.md, andapp.json(connection schema).zod.scripts/validate-queries.tsto validate documents against Shopify’s schema, plus unit tests.registry.json(public, OAuth), added to rootpackage.json, deploy config indeploy.json(entrypointdist/server/main.js) forkubernetes-bunusing@decocms/runtimeand@decocms/mcps-shared.Migration
shopify/app.json: setstoreDomain(e.g. my-store.myshopify.com) and place the Admin API token in the connection’s Authorization field; setapiVersionif you need a non-default.read_products,read_orders,read_customers,read_inventory,read_fulfillments,read_discounts,read_content,read_locales,read_shopify_payments_*,read_reports).deploy.jsononkubernetes-bunor run locally withbun run dev; build withbun run build.Written for commit ebff24f. Summary will update on new commits.