Salta l'installazione. Attivo in meno di 2 minuti.
Avvia una prova gratuita su cloud.anythingmcp.com, aggiungi JTL-Wawi con un clic, poi punta il tuo client AI (Claude, ChatGPT, Copilot o Cursor) all'endpoint MCP generato. Niente Docker, niente git clone, nessuna esperienza di sviluppo richiesta.
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.
Prova a chiedere
Prompt di esempio per JTL-Wawi
Clicca su un prompt per copiarlo. Incollalo in Claude, ChatGPT, Cursor, Gemini, Copilot o OpenClaw per eseguirlo contro questo connettore.
Claude è un'AI e può sbagliare. Verifica sempre le risposte.
💡 Niente installazione? Vai direttamente su cloud.anythingmcp.com. Accedi, clicca Connectors → JTL-Wawi, inserisci le credenziali, genera una MCP API key — fatto. Niente Docker, niente
git clone, niente server locale.
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.
Prerequisiti
Le istruzioni di setup complete sono incluse nel connettore stesso (visibili nello store quando lo selezioni). Le variabili d'ambiente richieste sono:
JTL_WAWI_URL, JTL_WAWI_API_KEY, JTL_WAWI_APP_ID
Step 1 — Ottieni le credenziali
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)
Step 2 — Installa l'adapter
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
Step 3 — Aggiungi il connettore in Gemini
Gemini CLI legge i server MCP da ~/.gemini/settings.json (o %APPDATA%\gemini\settings.json su Windows). Aggiungi:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Ottieni la tua MCP API key da AnythingMCP → Profilo → MCP API Keys → Nuova Key.
- Salva il file e riavvia
gemini. - Esegui
/mcpnella Gemini CLI —JTL-Wawidovrebbe essere elencato come disponibile. - Vertex AI Studio: passa
https://cloud.anythingmcp.com/mcpnell'arraytoolsdella richiesta con lo stesso header Bearer.
Tool disponibili
| 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
Gemini 1.5 Pro o 2.x supportano MCP? Sì — Gemini CLI ≥ 0.4 e la Vertex AI tools API accettano connettori MCP httpUrl con header Bearer.
Prossimi passi
Questa guida ti è stata utile?