Connector guide3-minute read9 MCP toolsEN · DE · IT

Cómo conectar JTL-Wawi a Gemini — via MCP

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.

HCBy HelpCode teamActualizado 3 min read Código abierto en GitHub

Sin tarjeta de crédito · 7 días de prueba · Alternativa self-host disponible

JTL-Wawi

JTL-Wawi

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.

herramientas

9

Región

DE

Categoría

ERP

Autenticación

Bearer Token

Env vars requeridas

JTL_WAWI_URLJTL_WAWI_API_KEYJTL_WAWI_APP_ID
Instalar con un clic en Cloud

7 días de prueba gratis · Sin tarjeta de crédito

  • Prueba gratis de 7 días
    Sin tarjeta de crédito
  • GDPR & SOC 2 ready
    Datos en la UE, registros de auditoría
  • Código abierto en GitHub
    Open source · AGPL-3.0
  • Funciona con ChatGPT, Claude, Gemini
    Cualquier cliente compatible con MCP

Sáltate la instalación. Funcionando en menos de 2 minutos.

Inicia una prueba gratuita en cloud.anythingmcp.com, añade JTL-Wawi con un clic y apunta tu cliente de IA (Claude, ChatGPT, Copilot o Cursor) al endpoint MCP generado. Sin Docker, sin git clone, sin experiencia de desarrollo.

Empezar prueba gratis

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.

Prueba a pedir

Prompts de ejemplo para JTL-Wawi

Haz clic en un prompt para copiarlo. Pégalo en Claude, ChatGPT, Cursor, Gemini, Copilot u OpenClaw para ejecutarlo contra este conector.

JTL-Wawi · live vía MCP
Compartir
Opus 4.7

Claude es IA y puede equivocarse. Verifica siempre las respuestas.

💡 ¿Sin instalación? Usa cloud.anythingmcp.com directamente. Inicia sesión, pulsa Connectors → JTL-Wawi, pega tus credenciales, genera una MCP API key — listo. Sin Docker, sin git clone, sin servidor local.

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.

Requisitos previos

Las instrucciones de configuración completas están incluidas en el conector (visibles en el store al seleccionarlo). Las variables de entorno requeridas:

JTL_WAWI_URL, JTL_WAWI_API_KEY, JTL_WAWI_APP_ID

Paso 1 — Obtener credenciales

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.

  1. Install the JTL API Server on the machine that reaches your JTL-Wawi MSSQL database, and start its service.
  2. 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.
  3. Set JTL_WAWI_URL to the API server's root (e.g. https://wawi.example.com:5883, no trailing slash) and JTL_WAWI_API_KEY to the key. The adapter sends Authorization: Bearer <key> and X-AppId.

…(continued in the in-app connector instructions)

Paso 2 — Instalar el 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

Paso 3 — Añadir el conector en Gemini

Gemini CLI lee servidores MCP desde ~/.gemini/settings.json (o %APPDATA%\gemini\settings.json en Windows). Añade:

{
  "mcpServers": {
    "anythingmcp": {
      "httpUrl": "https://cloud.anythingmcp.com/mcp",
      "headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
    }
  }
}
  1. Obtén tu MCP API key desde AnythingMCP → Perfil → MCP API Keys → Nueva Key.
  2. Guarda el archivo y reinicia gemini.
  3. Ejecuta /mcp en la Gemini CLI — JTL-Wawi debería aparecer como disponible.
  4. Vertex AI Studio: pasa https://cloud.anythingmcp.com/mcp al array tools de tu petición con el mismo header Bearer.

Herramientas disponibles

ToolWhat it does
jtl_wawi_list_warehousesList the warehouses (Lager) configured in JTL-Wawi with their id, name and type
jtl_wawi_list_itemsList articles from the item master with their SKU, name, prices, EAN and manufacturer
jtl_wawi_get_itemRead one article in full: its SKU, descriptions, dimensions, prices, categories and supplier links
jtl_wawi_get_item_stockRead the per-warehouse stock of one article: quantity on hand, reserved, and available
jtl_wawi_list_customersList customers with their customer number, company, contact name, address and customer group
jtl_wawi_get_customerRead one customer in full: billing and delivery addresses, payment and shipping defaults, and the customer group they belong to
jtl_wawi_list_sales_ordersList sales orders with their order number, customer, date, payment and shipping status and total
jtl_wawi_get_sales_orderRead one sales order in full: its line items with SKU, quantity and price, the addresses, and the payment and shipping state
jtl_wawi_list_shipmentsList 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 soportan MCP? Sí — Gemini CLI ≥ 0.4 y la API de tools de Vertex AI aceptan conectores MCP httpUrl con header Bearer.

Siguientes pasos

¿Te ha sido útil esta guía?

Your JTL-Wawi agent is one click away.

Install the connector, paste the key, prompt Gemini. Free for 7 days, no credit card.

Guías relacionadas

connectors

Cómo conectar JTL-Wawi a ChatGPT — via MCP

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.

connectors

Cómo conectar JTL-Wawi a Claude — via MCP

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.

connectors

Cómo conectar JTL-Wawi a Cursor — via MCP

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.

connectors

JTL-Wawi a MCP — Pilota JTL-Wawi desde cualquier agente IA

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.

connectors

Cómo conectar AFAS Profit a Gemini — via MCP

AFAS Profit — Dutch ERP and HR: read any published GetConnector, list what is available, and inspect a connector's metadata. Token auth with AFAS's base64-wrapped XML token.

connectors

Cómo conectar Aruba Fatturazione Elettronica a Gemini — via MCP

Aruba Fatturazione Elettronica: send and track Italian e-invoices through the Sistema di Interscambio, read received invoices and their SDI notifications. Token auth against Aruba's B2B gateway.