インストール不要。2分以内に動きます。
cloud.anythingmcp.com で無料トライアルを開始し、Haufe X360 をワンクリックで追加して、AI クライアント(Claude、ChatGPT、Copilot、Cursor)を生成された MCP エンドポイントに向けるだけ。Docker も git clone も、開発経験も不要です。
Summary
Haufe X360 cloud ERP (the German Acumatica distribution): customers, stock items, sales orders, invoices and shipments over the contract-based REST API. Cookie-session auth against your own tenant. Partner credentials required.
こう聞いてみよう
Haufe X360 のサンプルプロンプト
プロンプトをクリックでコピー。Claude / ChatGPT / Cursor / Gemini / Copilot / OpenClaw に貼り付けて、このコネクターで実行できます。
Claude は AI のため誤ることがあります。回答をご確認ください。
💡 インストール不要? cloud.anythingmcp.com を直接利用してください。 サインインし、Connectors → Haufe X360 をクリック、認証情報を貼り付け、MCP API キーを発行 — 完了です。Docker も
git cloneもローカルサーバーも不要。
Haufe X360 + Gemini
Haufe X360 cloud ERP (the German Acumatica distribution): customers, stock items, sales orders, invoices and shipments over the contract-based REST API. Cookie-session auth against your own tenant. Partner credentials required.
前提条件
完全なセットアップ手順はコネクタ自体に組み込まれています (ストアでコネクタを選択すると表示)。必要な環境変数:
X360_URL, X360_USERNAME, X360_PASSWORD
ステップ 1 — 認証情報を取得
Partner credentials required. Haufe X360's API is not self-service: access is arranged through your Haufe implementation partner, who enables the endpoint on the tenant and creates the integration user. Do not expect to find an API key in the web UI.
Setup
- Ask your partner to publish the Default contract-based endpoint (or a custom one) and note its version — typically
Default/20.200.001. - Have them create a dedicated API user with the licence type that permits API access, and the roles for the screens you want to read.
- Set
X360_URLto your tenant root (e.g. …
ステップ 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 — Gemini にコネクタを追加
Gemini CLI は ~/.gemini/settings.json (Windows は %APPDATA%\gemini\settings.json) から MCP サーバを読み込みます。追加:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- AnythingMCP の Profile → MCP API Keys → New Key で MCP API key を取得。
- ファイルを保存し
geminiを再起動。 - Gemini CLI で
/mcpを実行 —Haufe X360が利用可能として表示されます。 - Vertex AI Studio: 同じ Bearer ヘッダーで
https://cloud.anythingmcp.com/mcpをリクエストのtools配列に渡してください。
利用可能なツール
| Tool | What it does |
|---|---|
haufe_x360_list_customers | List customers with their id, name, status, class and balance |
haufe_x360_get_customer | Read one customer by their customer id, with addresses, contacts, payment terms and credit settings |
haufe_x360_list_sales_orders | List sales orders with their number, type, customer, date, status and total |
haufe_x360_list_stock_items | List stock items with their inventory id, description, item class, base unit and default price |
haufe_x360_list_invoices | List A/R invoices with their reference number, customer, date, due date, status and balance — the answer to 'what is still open' |
haufe_x360_list_shipments | List shipments with their number, customer, status, shipment date and the sales order they fulfil |
haufe_x360_list_vendors | List vendors with their id, name, status, class and balance, for the purchasing side of the ledger |
FAQ
Gemini 1.5 Pro / 2.x は MCP をサポートしますか? はい — Gemini CLI ≥ 0.4 と Vertex AI tools API は Bearer ヘッダー付きの httpUrl MCP コネクタを受け入れます。
次のステップ
このガイドは役に立ちましたか?