Salta l'installazione. Attivo in meno di 2 minuti.
Avvia una prova gratuita su cloud.anythingmcp.com, aggiungi AFAS Profit con un clic, poi punta il tuo client AI (Claude, ChatGPT, Copilot o Cursor) all'endpoint MCP generato. Niente Docker, niente git clone, nessuna esperienza di sviluppo richiesta.
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.
Prova a chiedere
Prompt di esempio per AFAS Profit
Clicca su un prompt per copiarlo. Incollalo in Claude, ChatGPT, Cursor, Gemini, Copilot o OpenClaw per eseguirlo contro questo connettore.
Claude è un'AI e può sbagliare. Verifica sempre le risposte.
💡 Niente installazione? Vai direttamente su cloud.anythingmcp.com. Accedi, clicca Connectors → AFAS Profit, inserisci le credenziali, genera una MCP API key — fatto. Niente Docker, niente
git clone, niente server locale.
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.
Prerequisiti
Le istruzioni di setup complete sono incluse nel connettore stesso (visibili nello store quando lo selezioni). Le variabili d'ambiente richieste sono:
AFAS_ENVIRONMENT, AFAS_TOKEN
Step 1 — Ottieni le credenziali
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>. …
Step 2 — Installa l'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 — Aggiungi il connettore in Cursor
Cursor legge i server MCP da ~/.cursor/mcp.json. Aggiungi questa voce:
{
"mcpServers": {
"anythingmcp": {
"url": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Ottieni la tua MCP API key da AnythingMCP → Profilo → MCP API Keys → Nuova Key.
- Salva il file e riavvia Cursor.
- Apri Cursor → Impostazioni → MCP per verificare che
AFAS Profitsia presente e "Connected". - Inizia a chattare — tutti gli strumenti di
AFAS Profitsono ora invocabili.
Tool disponibili
| 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 supporta MCP server personalizzati nel piano free? Sì — MCP è disponibile su Hobby, Pro e Business.
Prossimi passi
Questa guida ti è stata utile?