Installation überspringen. In unter 2 Minuten einsatzbereit.
Starte eine kostenlose Testphase auf cloud.anythingmcp.com, füge JTL-Wawi mit einem Klick hinzu und richte deinen KI-Client (Claude, ChatGPT, Copilot oder Cursor) auf den erzeugten MCP-Endpoint. Kein Docker, kein git clone, keinerlei Entwicklungserfahrung nötig.
Summary
JTL-Wawi — the e-commerce ERP behind a large share of German online retail. Read customers, items, stock, sales orders and shipments from your on-premises JTL-Wawi via the JTL API Server. REST v1, bearer token.
Frag einfach
Beispiel-Prompts für JTL-Wawi
Klick auf einen Prompt, um ihn zu kopieren. In Claude, ChatGPT, Cursor, Gemini, Copilot oder OpenClaw einfügen — und gegen diesen Connector laufen lassen.
Claude ist KI und kann Fehler machen. Bitte Antworten gegenprüfen.
💡 Keine Installation? Nutze cloud.anythingmcp.com direkt. Einloggen, Connectors → JTL-Wawi klicken, Zugangsdaten einfügen, MCP-API-Key erzeugen — fertig. Kein Docker, kein
git clone, kein lokaler Server.
JTL-Wawi + Gemini
JTL-Wawi — the e-commerce ERP behind a large share of German online retail. Read customers, items, stock, sales orders and shipments from your on-premises JTL-Wawi via the JTL API Server. REST v1, bearer token.
Voraussetzungen
Die vollständige Setup-Anleitung ist in den Connector eingebaut (im Store sichtbar, wenn du den Connector auswählst). Benötigte Umgebungsvariablen für diesen Connector:
JTL_WAWI_URL, JTL_WAWI_API_KEY, JTL_WAWI_APP_ID
Schritt 1 — Zugangsdaten holen
JTL-Wawi is on-premises Windows software and does not speak HTTP on its own. The REST API is served by the separate JTL API Server (sometimes called the Wawi API / JTL-Wawi API), which you install alongside the Wawi database.
- Install the JTL API Server on the machine that reaches your JTL-Wawi MSSQL database, and start its service.
- In the API Server's admin UI create an App and copy the generated key. JTL issues it base64-encoded; use it exactly as given.
- Set
JTL_WAWI_URLto the API server's root (e.g.https://wawi.example.com:5883, no trailing slash) andJTL_WAWI_API_KEYto the key. The adapter sendsAuthorization: Bearer <key>andX-AppId.
…(continued in the in-app connector instructions)
Schritt 2 — Adapter installieren
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
Schritt 3 — Connector in Gemini hinzufügen
Gemini CLI liest MCP-Server aus ~/.gemini/settings.json (oder %APPDATA%\gemini\settings.json unter Windows). Hinzufügen:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Hole deinen MCP API Key aus AnythingMCP → Profil → MCP API Keys → Neuer Key.
- Speichern und
geminineu starten. /mcpin Gemini CLI ausführen —JTL-Wawisollte als verfügbar gelistet sein.- Vertex AI Studio:
https://cloud.anythingmcp.com/mcpimtools-Array der Anfrage mit demselben Bearer-Header übergeben.
Verfügbare Tools
| Tool | What it does |
|---|---|
jtl_wawi_list_warehouses | List the warehouses (Lager) configured in JTL-Wawi with their id, name and type |
jtl_wawi_list_items | List articles from the item master with their SKU, name, prices, EAN and manufacturer |
jtl_wawi_get_item | Read one article in full: its SKU, descriptions, dimensions, prices, categories and supplier links |
jtl_wawi_get_item_stock | Read the per-warehouse stock of one article: quantity on hand, reserved, and available |
jtl_wawi_list_customers | List customers with their customer number, company, contact name, address and customer group |
jtl_wawi_get_customer | Read one customer in full: billing and delivery addresses, payment and shipping defaults, and the customer group they belong to |
jtl_wawi_list_sales_orders | List sales orders with their order number, customer, date, payment and shipping status and total |
jtl_wawi_get_sales_order | Read one sales order in full: its line items with SKU, quantity and price, the addresses, and the payment and shipping state |
jtl_wawi_list_shipments | List shipments with their tracking number, carrier, date and the sales order they belong to — the answer to 'has it gone out yet' |
FAQ
Unterstützen Gemini 1.5 Pro oder 2.x MCP? Ja — Gemini CLI ≥ 0.4 und die Vertex AI Tools API akzeptieren MCP httpUrl-Connectors mit Bearer-Header.
Nächste Schritte
War dieser Guide hilfreich?