Community MCP server for Shopify e-commerce platform. Agents can list and manage products, process orders, handle customer data, track inventory levels, manage collections, and query shop analytics. Uses Shopify's Admin GraphQL API. Essential for e-commerce agents that automate product management, order processing, and customer service workflows.
npx -y @anthropic/shopify-mcp-server
{
"mcpServers": {
"shopify": {
"env": {
"SHOPIFY_STORE_URL": "your-store.myshopify.com",
"SHOPIFY_ACCESS_TOKEN": "your-access-token"
},
"args": [
"-y",
"@anthropic/shopify-mcp-server"
],
"command": "npx"
}
}
}Create Shopify order
{
"type": "object",
"required": [
"line_items"
],
"properties": {
"line_items": {
"type": "array"
},
"customer_email": {
"type": "string"
}
}
}// Input
{
"line_items": [
{
"quantity": 2,
"variant_id": "v1"
}
],
"customer_email": "john@example.com"
}// Output
{
"id": "o1",
"order_number": 1042
}Get Shopify customer
{
"type": "object",
"required": [
"customer_id"
],
"properties": {
"customer_id": {
"type": "string"
}
}
}// Input
{
"customer_id": "c1"
}// Output
{
"id": "c1",
"email": "john@example.com",
"orders_count": 5
}List Shopify products
Community MCP server for Shopify e-commerce platform. Agents can list and manage products, process orders, handle customer data, track inventory levels, manage collections, and query shop analytics. Uses Shopify's Admin GraphQL API. Essential for e-commerce agents that automate product management, order processing, and customer service workflows.
Shopify provides 3 tools including create_order, get_customer, list_products.
Shopify offers a free tier with 300 calls per month. For higher usage, paid plans start at €0/month.
You can install Shopify using the following command: npx -y @anthropic/shopify-mcp-server. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
{
"type": "object",
"required": [],
"properties": {
"limit": {
"type": "integer"
},
"collection_id": {
"type": "string"
}
}
}// Input
{
"limit": 10
}// Output
{
"products": [
{
"id": "p1",
"price": "29.99",
"title": "T-Shirt"
}
]
}Shopify is listed under the Finance & Accounting category in the AgentForge MCP registry.
Shopify has a current uptime of 99.8% with an average response time of 310ms.
To connect Shopify, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of Shopify's tools via the Model Context Protocol.