Back to Guides

Shopware 6 MCP Server — Storefront-API für KI-Agenten

Shopware 6 Produktkatalog, Kategorien und Suche aus jedem KI-Agenten via MCP abfragen. Vorgefertigter Shopware Store API Adapter in AnythingMCP.

Pre-built adapter available on AnythingMCP Cloud

Skip the self-hosted setup — install this adapter in one click with a free trial. No credit card required.

Install on Cloud — Free Trial

Shopware 6 an KI-Agenten anbinden

Shopware 6 ist eine der am weitesten verbreiteten E-Commerce-Plattformen in DACH. Die Shopware Store API treibt das Shopfrontend selbst — Produktkatalog, Kategorien, Cross-Sells, Suche, Suggest. Mit Anbindung an MCP kann Ihr KI-Agent Kundenfragen beantworten, Produktempfehlungen generieren und Conversational Commerce auf jedem Shopware-6-Shop bereitstellen.

Schnelleinrichtung mit integriertem Adapter

Der Shopware-6-Adapter ist Bestandteil von AnythingMCP. Sie hinterlegen die Shop-URL und einen Sales-Channel-Access-Key.

Schritt 1: AnythingMCP bereitstellen

git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d

Schritt 2: Sales-Channel-Access-Key beschaffen

Im Shopware-Admin: Verkaufskanäle → [Ihr Kanal] → API-Zugang → Access key. Diesen Wert kopieren.

Schritt 3: Adapter importieren

http://localhost:3000/connectors/store öffnen, Import beim Shopware-6-Adapter klicken und ausfüllen:

  • SHOPWARE_URL — Ihre Shop-URL ohne abschließenden Slash, z.B. https://shop.koch-freiburg.de
  • SHOPWARE_ACCESS_KEY — der Sales-Channel-Access-Key

Schritt 4: Mit KI-Agent verbinden

{
  "mcpServers": {
    "shopware": {
      "url": "http://localhost:4000/mcp"
    }
  }
}

Verfügbare Tools

| Tool | Beschreibung | |------|-------------| | shopware_search_products | Freitext + Filter + Sortierung + Associations | | shopware_get_product | Einzelnes Produkt mit Medien, Eigenschaften, Cross-Sells | | shopware_search_categories | Kategorien im Storefront-Baum auflisten/suchen | | shopware_get_category | Kategorie mit optionalen Produkt-Associations | | shopware_search_suggest | As-you-type Produkt-Vorschläge (niedrige Latenz) | | shopware_get_cross_sells | Cross-Sell-Streams für ein Produkt |

KI-Anwendungsfälle

  • "Finde Produkte rund um 'Akkuschrauber Bosch' im Katalog"
  • "Zeig mir Produkte in der Kategorie 'Elektrowerkzeuge', sortiert nach Preis"
  • "Was ist die Beschreibung von Produkt-UUID 1a2b3c…?"
  • "Liste 'Kunden kauften auch' Vorschläge für SKU SK-1001"

Store API vs Admin API

Dieser Adapter deckt die öffentliche Store API ab (keine Auth-Komplexität, ideal für Katalog-Abfragen). Für administrative Schreibvorgänge (Produkte anlegen, Bestand verwalten, Aufträge abwickeln) wird die Admin API benötigt, die OAuth2 client_credentials nutzt und nicht Bestandteil dieses Adapters ist.

Nächste Schritte