Skip the install. Get this working in under 2 minutes.
Start a free trial on cloud.anythingmcp.com, add the Haufe X360 in one click, then point your AI client (Claude, ChatGPT, Copilot or Cursor) at the generated MCP endpoint. No Docker, no git clone, zero engineering experience required.
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.
Try asking
Example prompts for Haufe X360
Click any prompt to copy it. Paste into Claude, ChatGPT, Cursor, Gemini, Copilot or OpenClaw to run it against this connector.
Claude is AI and can make mistakes. Please double-check responses.
💡 No install? Use cloud.anythingmcp.com directly. Sign in, click Connectors → Haufe X360, paste your credentials, mint an MCP API key — done. No Docker, no
git clone, no local server.
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.
Prerequisites
See the full setup instructions baked into the connector (visible in the in-app store when you select the connector). The required environment variables for this connector are:
X360_URL, X360_USERNAME, X360_PASSWORD
Step 1 — Get credentials
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. …
Step 2 — Install the 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 — Add the connector in Gemini
Gemini CLI reads MCP servers from ~/.gemini/settings.json (or %APPDATA%\gemini\settings.json on Windows). Add:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Get your MCP API key from AnythingMCP → Profile → MCP API Keys → New Key.
- Save the file and restart
gemini. - Run
/mcpinside the Gemini CLI —Haufe X360should be listed as available. - Vertex AI Studio: pass
https://cloud.anythingmcp.com/mcpto thetoolsarray of your request with the same Bearer header.
Available 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
Does Gemini 1.5 Pro or 2.x support MCP? Yes — Gemini CLI ≥ 0.4 and Vertex AI tools API both accept MCP httpUrl connectors with Bearer headers.
Next steps
Was this guide helpful?