Пропустите установку. Заработает меньше чем за 2 минуты.
Начните бесплатный период на cloud.anythingmcp.com, добавьте Haufe X360 одним кликом и направьте свой ИИ-клиент (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 key — готово. Без 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 читает MCP-серверы из ~/.gemini/settings.json (или %APPDATA%\gemini\settings.json в Windows). Добавьте:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Получите MCP API key в AnythingMCP → Profile → MCP API Keys → New Key.
- Сохраните файл и перезапустите
gemini. - Запустите
/mcpв Gemini CLI —Haufe X360должен быть доступен. - Vertex AI Studio: передайте
https://cloud.anythingmcp.com/mcpв массивtoolsзапроса с тем же Bearer-заголовком.
Доступные инструменты
| 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 принимают MCP-коннекторы httpUrl с Bearer-заголовком.
Следующие шаги
Это руководство помогло?