Installation überspringen. In unter 2 Minuten einsatzbereit.
Starte eine kostenlose Testphase auf cloud.anythingmcp.com, füge clockodo 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
clockodo time tracking for German SMBs: time entries, customers, projects, services, users, absences and the running clock. REST API v2, authenticated with a per-user API key plus the user's e-mail address.
Frag einfach
Beispiel-Prompts für clockodo
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 → clockodo klicken, Zugangsdaten einfügen, MCP-API-Key erzeugen — fertig. Kein Docker, kein
git clone, kein lokaler Server.
clockodo + Cursor
clockodo time tracking for German SMBs: time entries, customers, projects, services, users, absences and the running clock. REST API v2, authenticated with a per-user API key plus the user's e-mail address.
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:
CLOCKODO_API_KEY, CLOCKODO_API_USER
Schritt 1 — Zugangsdaten holen
Getting credentials — clockodo needs two values.
- Sign in and open Mein Bereich → Mein Benutzerkonto; the API-Schlüssel is at the bottom of the page. Put it in
CLOCKODO_API_KEY. - Put the e-mail address of that same account in
CLOCKODO_API_USER. clockodo sends it in theX-ClockodoApiUserheader and rejects a key without it. - clockodo also asks every API client to identify itself in a
X-Clockodo-External-Applicationheader; this adapter sendsAnythingMCP;[email protected]automatically.
…(continued in the in-app connector instructions)
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
clockodoals "Connected" gelistet ist. - Chatten — alle
clockodo-Tools sind aufrufbar.
Verfügbare Tools
| Tool | What it does |
|---|---|
clockodo_list_users | List the clockodo users in this account with their name, e-mail, role and whether they are active |
clockodo_list_customers | List customers with their number, billing rate and active flag |
clockodo_list_projects | List projects, optionally narrowed to one customer, with their budget, billing rate and completion flag |
clockodo_list_services | List the service types (Leistungsarten) time can be booked against, with their default billability |
clockodo_list_entries | Read time entries in a date range — the core query |
clockodo_get_clock | Read the currently running clock: which entry is ticking right now, for which user, project and service, and since when |
clockodo_list_absences | List absences (holiday, sick leave, training) for a year, with their type, date range and approval status |
clockodo_get_entry | Read one time entry by its id: the exact start and end time, duration, text, project, service and billability |
clockodo_create_entry | Book a time entry against a customer, project and service |
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?