Пропустите установку. Заработает меньше чем за 2 минуты.
Начните бесплатный период на cloud.anythingmcp.com, добавьте JTL-Wawi одним кликом и направьте свой ИИ-клиент (Claude, ChatGPT, Copilot или Cursor) на сгенерированный MCP-эндпоинт. Без Docker, без git clone, без опыта разработки.
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.
Попробуй спросить
Примеры промптов для JTL-Wawi
Кликни по промпту — он скопируется. Вставь в Claude, ChatGPT, Cursor, Gemini, Copilot или OpenClaw и запусти через этот коннектор.
Claude — это AI, он может ошибаться. Проверяйте ответы.
💡 Без установки? Используйте cloud.anythingmcp.com напрямую. Войдите, нажмите Connectors → JTL-Wawi, вставьте учётные данные, создайте MCP API key — готово. Без Docker, без
git clone, без локального сервера.
JTL-Wawi + Cursor
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.
Предварительные требования
Полные инструкции по настройке встроены в коннектор (видны в магазине при выборе коннектора). Требуемые переменные окружения:
JTL_WAWI_URL, JTL_WAWI_API_KEY, JTL_WAWI_APP_ID
Шаг 1 — Получите учётные данные
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)
Шаг 2 — Установите адаптер
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
Шаг 3 — Добавьте коннектор в Cursor
Cursor читает MCP-серверы из ~/.cursor/mcp.json. Добавьте эту запись:
{
"mcpServers": {
"anythingmcp": {
"url": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Получите MCP API key в AnythingMCP → Profile → MCP API Keys → New Key.
- Сохраните файл и перезапустите Cursor.
- Откройте Cursor → Settings → MCP и убедитесь, что
JTL-Wawiотображается как "Connected". - Начинайте чат — все инструменты
JTL-Wawiдоступны.
Доступные инструменты
| 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
Поддерживает ли Cursor кастомные MCP-серверы на бесплатном тарифе? Да — MCP доступен на Hobby, Pro и Business.
Следующие шаги
Это руководство помогло?