Installation überspringen. In unter 2 Minuten einsatzbereit.
Starte eine kostenlose Testphase auf cloud.anythingmcp.com, füge Teamleader Focus 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
Teamleader Focus — the Belgian CRM, project and invoicing suite: companies, contacts, deals, projects, time tracking, invoices and quotations. REST API, OAuth 2.0, everything over POST.
Frag einfach
Beispiel-Prompts für Teamleader Focus
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 → Teamleader Focus klicken, Zugangsdaten einfügen, MCP-API-Key erzeugen — fertig. Kein Docker, kein
git clone, kein lokaler Server.
Teamleader Focus + Gemini
Teamleader Focus — the Belgian CRM, project and invoicing suite: companies, contacts, deals, projects, time tracking, invoices and quotations. REST API, OAuth 2.0, everything over POST.
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:
TEAMLEADER_CLIENT_ID, TEAMLEADER_CLIENT_SECRET, TEAMLEADER_REFRESH_TOKEN
Schritt 1 — Zugangsdaten holen
Getting a token
- Register an integration in the Teamleader Marketplace developer area (developer.teamleader.eu). You receive a client id and client secret.
- Run the authorization-code flow once for the account and keep the refresh token — Teamleader's access tokens last one hour.
- Set
TEAMLEADER_CLIENT_ID,TEAMLEADER_CLIENT_SECRETandTEAMLEADER_REFRESH_TOKEN. AnythingMCP refreshes the access token on its own.
…(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 Gemini hinzufügen
Gemini CLI liest MCP-Server aus ~/.gemini/settings.json (oder %APPDATA%\gemini\settings.json unter Windows). Hinzufügen:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "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
geminineu starten. /mcpin Gemini CLI ausführen —Teamleader Focussollte als verfügbar gelistet sein.- Vertex AI Studio:
https://cloud.anythingmcp.com/mcpimtools-Array der Anfrage mit demselben Bearer-Header übergeben.
Verfügbare Tools
| Tool | What it does |
|---|---|
teamleader_get_me | Read the user the token belongs to, with their name, e-mail, language and account |
teamleader_list_companies | List client companies with their name, VAT number, address and tags |
teamleader_get_company | Read one company in full: addresses, VAT number, payment terms, custom fields, tags and the account manager |
teamleader_list_contacts | List individual contacts with their name, e-mail, phone and the companies they are linked to |
teamleader_list_deals | List deals with their title, customer, value, phase and expected closing date — the sales-pipeline view |
teamleader_get_deal | Read one deal in full: its value, phase, source, responsible user, linked quotations and the full phase history |
teamleader_list_invoices | List invoices with their number, date, due date, customer, totals and payment status — the receivables view |
teamleader_list_projects | List projects with their title, customer, status, budget and the milestones they are broken into |
teamleader_list_time_tracking | List tracked time entries with their user, date, duration, project and invoiceability — the raw data behind 'how much did we spend on this c |
teamleader_list_quotations | List quotations with their deal, total, status and validity date, to see what is out with prospects and not yet accepted |
FAQ
Unterstützen Gemini 1.5 Pro oder 2.x MCP? Ja — Gemini CLI ≥ 0.4 und die Vertex AI Tools API akzeptieren MCP httpUrl-Connectors mit Bearer-Header.
Nächste Schritte
War dieser Guide hilfreich?