Shopify's official developer MCP server — accurate API docs and schema introspection for building Shopify apps.
commercetools Commerce MCP
Summary
Official commercetools MCP server exposing products, carts, orders, customers and the rest of the Composable Commerce API as scoped, selectable agent tools.
Features
- Read and write products, carts, orders and customers via the Composable Commerce API
- Per-tool scoping with --tools, including an all.read read-only mode
- Dynamic tool loading threshold to keep large projects manageable
- Client-credentials or pre-issued access-token authentication
- Ships a commerce agent alongside the MCP server for agent frameworks
Installation
Set up this MCP server in your favorite AI agent — copy a ready-made configuration below.
Description
commercetools Commerce MCP connects an MCP client — Claude Desktop, Cursor, VS Code or an agent framework — to a commercetools project, so an agent can read and modify catalogue and order data through the Composable Commerce API. The repository ships both the MCP server and a commerce agent for use inside agent frameworks.
Scope control is the point
Rather than handing an agent every endpoint, tools are selected explicitly with the --tools flag: all for the full surface, all.read for a read-only server, or a precise list such as products.read,products.create. On large projects a --dynamicToolLoadingThreshold keeps the exposed tool list manageable instead of flooding the client's context. Running production credentials against all.read is a realistic way to let an agent investigate a catalogue without any risk of writes.
Authentication
Two modes are supported. client_credentials (the default) takes --clientId and --clientSecret from an API client you create in the Merchant Center. auth_token takes a pre-existing --accessToken, with client id and secret optional. Both also need --projectKey, --authUrl and --apiUrl for your region.
Who it is for
Teams already on commercetools Composable Commerce who want agents doing catalogue maintenance, order lookups, price and promotion checks or customer-service investigation against real project data — with the blast radius set by which tools were enabled at launch.
Published as @commercetools/commerce-mcp under the MIT licence.
Related MCP Servers
Square's official MCP server — manage catalog, orders, payments, customers, and inventory from an AI client.
PayPal's official MCP server — create invoices, manage orders and subscriptions, and query transactions.