Installation überspringen. In unter 2 Minuten einsatzbereit.
Starte eine kostenlose Testphase auf cloud.anythingmcp.com, füge AFAS Profit mit einem Klick hinzu und richte deinen KI-Client (Claude, ChatGPT, Copilot oder Cursor) auf den erzeugten MCP-Endpoint. Kein Docker, kein git clone, keinerlei Entwicklungserfahrung nötig.
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.
Frag einfach
Beispiel-Prompts für AFAS Profit
Klick auf einen Prompt, um ihn zu kopieren. In Claude, ChatGPT, Cursor, Gemini, Copilot oder OpenClaw einfügen — und gegen diesen Connector laufen lassen.
Claude ist KI und kann Fehler machen. Bitte Antworten gegenprüfen.
💡 Keine Installation? Nutze cloud.anythingmcp.com direkt. Einloggen, Connectors → AFAS Profit klicken, Zugangsdaten einfügen, MCP-API-Key erzeugen — fertig. Kein Docker, kein
git clone, kein lokaler Server.
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.
Voraussetzungen
Die vollständige Setup-Anleitung ist in den Connector eingebaut (im Store sichtbar, wenn du den Connector auswählst). Benötigte Umgebungsvariablen für diesen Connector:
AFAS_ENVIRONMENT, AFAS_TOKEN
Schritt 1 — Zugangsdaten holen
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>. …
Schritt 2 — Adapter installieren
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
Schritt 3 — Connector in Cursor hinzufügen
Cursor liest MCP-Server aus ~/.cursor/mcp.json. Füge diesen Eintrag hinzu:
{
"mcpServers": {
"anythingmcp": {
"url": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Hole deinen MCP API Key aus AnythingMCP → Profil → MCP API Keys → Neuer Key.
- Speichern und Cursor neu starten.
- Cursor → Einstellungen → MCP öffnen und prüfen, ob
AFAS Profitals "Connected" gelistet ist. - Chatten — alle
AFAS Profit-Tools sind aufrufbar.
Verfügbare Tools
| 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
Unterstützt Cursor benutzerdefinierte MCP-Server im Free-Tier? Ja — MCP ist auf Hobby, Pro und Business verfügbar.
Nächste Schritte
War dieser Guide hilfreich?