No install? Use cloud.anythingmcp.com directly.
Sign in, install the Personio HR in one click, paste the credentials, mint an MCP API key — done. No Docker, no git clone, no local server to run.
TL;DR
Access employee records, attendances, absences, and time-offs via the Personio REST API. Personio is the dominant HR platform for DACH SMBs.
💡 Niente installazione? Vai direttamente su cloud.anythingmcp.com. Accedi, clicca Connectors → Personio HR, inserisci le credenziali, genera una MCP API key — fatto. Niente Docker, niente
git clone, niente server locale.
Personio HR + Cursor
Access employee records, attendances, absences, and time-offs via the Personio REST API. Personio is the dominant HR platform for DACH SMBs.
Prerequisiti
Le istruzioni di setup complete sono incluse nel connettore stesso (visibili nello store quando lo selezioni). Le variabili d'ambiente richieste sono:
PERSONIO_TOKEN
Step 1 — Ottieni le credenziali
Authentication model — IMPORTANT: Personio's /auth endpoint is not a standard OAuth2 flow. You POST {client_id, client_secret} once and get back a short-lived bearer token, which is then passed as Authorization: Bearer <token> on every request. Each successful API response ALSO returns a new token in its Authorization response header that must be used for the next call — effectively a token-rotation scheme. This adapter uses a single long-lived bearer token supplied by you (PERSONIO_TOKEN).
…(continued in the in-app connector instructions)
Step 2 — Installa l'adapter
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && 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
Personio HRsia presente e "Connected". - Inizia a chattare — tutti gli strumenti di
Personio HRsono ora invocabili.
Tool disponibili
| Tool | What it does |
|---|---|
personio_list_employees | List all employees |
personio_get_employee | Retrieve a single employee by id |
personio_list_absences | List absences (Abwesenheiten) — vacation, sick leave, parental leave, etc |
personio_list_attendances | List attendance records (working hours) |
personio_list_absence_types | List the configured absence types (vacation, sick, parental leave, etc |
FAQ
Cursor supporta MCP server personalizzati nel piano free? Sì — MCP è disponibile su Hobby, Pro e Business.
Prossimi passi
Questa guida ti è stata utile?