Пропустите установку. Заработает меньше чем за 2 минуты.
Начните бесплатный период на cloud.anythingmcp.com, добавьте AFAS Profit одним кликом и направьте свой ИИ-клиент (Claude, ChatGPT, Copilot или Cursor) на сгенерированный MCP-эндпоинт. Без Docker, без git clone, без опыта разработки.
Summary
AFAS Profit — Dutch ERP and HR: read any published GetConnector, list what is available, and inspect a connector's metadata. Token auth with AFAS's base64-wrapped XML token.
Попробуй спросить
Примеры промптов для AFAS Profit
Кликни по промпту — он скопируется. Вставь в Claude, ChatGPT, Cursor, Gemini, Copilot или OpenClaw и запусти через этот коннектор.
Claude — это AI, он может ошибаться. Проверяйте ответы.
💡 Без установки? Используйте cloud.anythingmcp.com напрямую. Войдите, нажмите Connectors → AFAS Profit, вставьте учётные данные, создайте MCP API key — готово. Без Docker, без
git clone, без локального сервера.
AFAS Profit + Cursor
AFAS Profit — Dutch ERP and HR: read any published GetConnector, list what is available, and inspect a connector's metadata. Token auth with AFAS's base64-wrapped XML token.
Предварительные требования
Полные инструкции по настройке встроены в коннектор (видны в магазине при выборе коннектора). Требуемые переменные окружения:
AFAS_ENVIRONMENT, AFAS_TOKEN
Шаг 1 — Получите учётные данные
AFAS exposes nothing until somebody publishes a GetConnector. That is the whole model, and it is why this adapter takes the connector name as a parameter rather than hard-coding entity paths.
- In AFAS open Algemeen → Beheer → App connector and create an app connector for the integration.
- Add the GetConnectors the agent should reach (e.g.
Profit_Debiteuren,Profit_Facturen, or your ownCustom_…). A GetConnector that has not been added to the app connector does not exist as far as the API is concerned. - Generate the token. AFAS gives you an XML blob like
<token><version>1</version><data>ABC123…</data></token>. …
Шаг 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 и убедитесь, что
AFAS Profitотображается как "Connected". - Начинайте чат — все инструменты
AFAS Profitдоступны.
Доступные инструменты
| Tool | What it does |
|---|---|
afas_profit_list_connectors | List the GetConnectors and UpdateConnectors published to this app connector |
afas_profit_get_connector_metadata | Read one GetConnector's field definitions: the field ids, their types and lengths |
afas_profit_get_data | Read rows from a GetConnector with AFAS's positional three-list filter |
afas_profit_get_debtors | Read the Profit_Debiteuren GetConnector — customers with their debtor number, name, address and credit data |
afas_profit_get_invoices | Read the Profit_Facturen GetConnector — invoices with their number, date, debtor and amounts |
afas_profit_get_employees | Read the Profit_Medewerkers GetConnector — employees with their number, name, department and employment data |
FAQ
Поддерживает ли Cursor кастомные MCP-серверы на бесплатном тарифе? Да — MCP доступен на Hobby, Pro и Business.
Следующие шаги
Это руководство помогло?