インストール不要。2分以内に動きます。
cloud.anythingmcp.com で無料トライアルを開始し、JTL-Wawi をワンクリックで追加して、AI クライアント(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 キーを発行 — 完了です。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 は ~/.cursor/mcp.json から MCP サーバを読み込みます。次のエントリを追加してください:
{
"mcpServers": {
"anythingmcp": {
"url": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- AnythingMCP の Profile → MCP API Keys → New Key で MCP API 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 の Free プランでカスタム MCP サーバは使えますか? はい — Hobby/Pro/Business で利用可能です。
次のステップ
このガイドは役に立ちましたか?