Пропустите установку. Заработает меньше чем за 2 минуты.
Начните бесплатный период на cloud.anythingmcp.com, добавьте Teamleader Focus одним кликом и направьте свой ИИ-клиент (Claude, ChatGPT, Copilot или Cursor) на сгенерированный MCP-эндпоинт. Без Docker, без git clone, без опыта разработки.
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.
Попробуй спросить
Примеры промптов для Teamleader Focus
Кликни по промпту — он скопируется. Вставь в Claude, ChatGPT, Cursor, Gemini, Copilot или OpenClaw и запусти через этот коннектор.
Claude — это AI, он может ошибаться. Проверяйте ответы.
💡 Без установки? Используйте cloud.anythingmcp.com напрямую. Войдите, нажмите Connectors → Teamleader Focus, вставьте учётные данные, создайте MCP API key — готово. Без Docker, без
git clone, без локального сервера.
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.
Предварительные требования
Полные инструкции по настройке встроены в коннектор (видны в магазине при выборе коннектора). Требуемые переменные окружения:
TEAMLEADER_CLIENT_ID, TEAMLEADER_CLIENT_SECRET, TEAMLEADER_REFRESH_TOKEN
Шаг 1 — Получите учётные данные
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)
Шаг 2 — Установите адаптер
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
Шаг 3 — Добавьте коннектор в Gemini
Gemini CLI читает MCP-серверы из ~/.gemini/settings.json (или %APPDATA%\gemini\settings.json в Windows). Добавьте:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Получите MCP API key в AnythingMCP → Profile → MCP API Keys → New Key.
- Сохраните файл и перезапустите
gemini. - Запустите
/mcpв Gemini CLI —Teamleader Focusдолжен быть доступен. - Vertex AI Studio: передайте
https://cloud.anythingmcp.com/mcpв массивtoolsзапроса с тем же Bearer-заголовком.
Доступные инструменты
| 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
Поддерживают ли Gemini 1.5 Pro или 2.x MCP? Да — Gemini CLI ≥ 0.4 и Vertex AI tools API принимают MCP-коннекторы httpUrl с Bearer-заголовком.
Следующие шаги
Это руководство помогло?