Back to Browse

Boostu Teamleader MCP Server

Developer ToolsModerate5.8MCP RegistryLocal
Free

Server data from the Official MCP Registry

MCP server for Teamleader Focus CRM. Use Teamleader in Claude and other AI assistants.

About

MCP server for Teamleader Focus CRM. Use Teamleader in Claude and other AI assistants.

Security Report

5.8
Moderate5.8Moderate Risk

This is a well-structured MCP server for Teamleader CRM integration with proper OAuth2 authentication and reasonable permission scope. The codebase demonstrates good security practices: credentials are managed via environment variables with optional persistent token storage, there are no hardcoded secrets or exfiltration patterns, and permissions are tightly scoped to the server's CRM management purpose. Minor code quality issues (broad error handling, unvalidated `extra` parameters) do not constitute security vulnerabilities given the context. Supply chain analysis found 1 known vulnerability in dependencies (1 critical, 0 high severity). Package verification found 1 issue.

5 files analyzed ยท 5 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

File System Write

Writes or modifies files on your machine. Check that this is expected for the tool.

What You'll Need

Set these up before or after installing:

Your Teamleader Focus integration Client IDRequired

Environment variable: TEAMLEADER_CLIENT_ID

Your Teamleader Focus integration Client SecretRequired

Environment variable: TEAMLEADER_CLIENT_SECRET

OAuth2 refresh token from the one-time authorizationRequired

Environment variable: TEAMLEADER_REFRESH_TOKEN

Path to persist the rotated refresh token (default .teamleader-token)Optional

Environment variable: TEAMLEADER_TOKEN_STORE

Comma-separated tool groups to enable (default: all groups)Optional

Environment variable: TEAMLEADER_TOOLS

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-boostuagency-boostu-teamleader-mcp": {
      "env": {
        "TEAMLEADER_TOOLS": "your-teamleader-tools-here",
        "TEAMLEADER_CLIENT_ID": "your-teamleader-client-id-here",
        "TEAMLEADER_TOKEN_STORE": "your-teamleader-token-store-here",
        "TEAMLEADER_CLIENT_SECRET": "your-teamleader-client-secret-here",
        "TEAMLEADER_REFRESH_TOKEN": "your-teamleader-refresh-token-here"
      },
      "args": [
        "-y",
        "boostu-teamleader-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

๐Ÿ”— BoostU Teamleader MCP

The open-source Teamleader Focus MCP server. Manage your CRM from Claude and other AI assistants, in plain language. ๐Ÿค–

CI npm version npm downloads node Model Context Protocol tools License: MIT Made by BoostU


๐Ÿ’ก What is this?

boostu-teamleader-mcp is a Model Context Protocol server that exposes the Teamleader Focus API to AI assistants โ€” including Claude Desktop, Claude Code, Cursor, and Windsurf. It provides over 100 tools spanning the full Teamleader Focus surface: CRM (contacts, companies, deals), sales documents (quotations, invoices, credit notes), product catalog, subscriptions, projects, time tracking, customer-service tickets, and more. Point your AI at it and manage your entire CRM through natural language.

Prefer not to self-host?

Use the managed, always-on edition at teamleader-mcp.boostu.be โ€” no OAuth setup, magic-link login, and a one-click connector for Claude. Free during the preview, paid plans after.

This repository is the open-source MCP server itself: run it locally with your own Teamleader integration. The hosted edition adds multi-tenant authentication, a dashboard, usage insights, and managed token handling on top of the same server.

Self-host (this repo)Managed (boostu.be)
PriceFree, MIT-licensedFree preview, then paid
SetupCreate your own Teamleader integration, run via npxCopy one connector URL into Claude
TokensYou manage .env and the refresh tokenEncrypted and rotated for you
Best forDevelopers and self-hostersNon-technical teams

๐Ÿ”Œ How it works

flowchart LR
    U["๐Ÿง‘ You"] -->|"plain language"| C["๐Ÿค– Claude / AI assistant"]
    C <-->|"MCP ยท stdio"| S["๐Ÿ”— boostu-teamleader-mcp"]
    S <-->|"OAuth2 REST"| T["๐Ÿ“‡ Teamleader Focus API"]

You ask Claude in plain language. Claude calls this MCP server, which authenticates to Teamleader Focus over OAuth2 and runs the matching API call. Your data stays in Teamleader; this server only brokers the calls.

Use the outline button at the top-right of this file to jump to any section.


โœจ Highlights

  • ๐Ÿ‘ฅ Full CRM: create and update contacts, companies, and deals across all pipelines
  • ๐Ÿงพ Quotations and invoicing: create quotations on deals, book invoices into accounting, send by email, and register payments
  • ๐Ÿ“ฆ Product catalog: browse products, categories, price lists, and units of measure
  • ๐Ÿ” Subscriptions: create, update, and deactivate recurring subscriptions
  • ๐Ÿ“Š Projects and time tracking: manage projects, milestones, log time entries, and start/stop live timers
  • ๐ŸŽซ Customer-service tickets: open tickets, post replies, and update statuses
  • ๐Ÿ”Ž Reference-data lookups: resolve deal phases, pipelines, tax rates, payment terms, lost reasons, and more
  • ๐Ÿ” OAuth2 with automatic refresh-token rotation: tokens are refreshed transparently; rotated tokens are persisted to a configurable file
  • ๐Ÿงฉ Selectable tool groups: load only the groups you need via TEAMLEADER_TOOLS to keep your assistant's context lean

๐Ÿš€ Quick Start

Run without installing

npx boostu-teamleader-mcp

Global install

npm i -g boostu-teamleader-mcp
boostu-teamleader-mcp

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "teamleader": {
      "command": "npx",
      "args": ["-y", "boostu-teamleader-mcp"],
      "env": {
        "TEAMLEADER_CLIENT_ID": "your-client-id",
        "TEAMLEADER_CLIENT_SECRET": "your-client-secret",
        "TEAMLEADER_REFRESH_TOKEN": "your-refresh-token"
      }
    }
  }
}

Claude Code

Add to your project's .mcp.json or ~/.claude/mcp.json:

{
  "mcpServers": {
    "teamleader": {
      "command": "npx",
      "args": ["-y", "boostu-teamleader-mcp"],
      "env": {
        "TEAMLEADER_CLIENT_ID": "your-client-id",
        "TEAMLEADER_CLIENT_SECRET": "your-client-secret",
        "TEAMLEADER_REFRESH_TOKEN": "your-refresh-token"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project root (or the global ~/.cursor/mcp.json):

{
  "mcpServers": {
    "teamleader": {
      "command": "npx",
      "args": ["-y", "boostu-teamleader-mcp"],
      "env": {
        "TEAMLEADER_CLIENT_ID": "your-client-id",
        "TEAMLEADER_CLIENT_SECRET": "your-client-secret",
        "TEAMLEADER_REFRESH_TOKEN": "your-refresh-token"
      }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "teamleader": {
      "command": "npx",
      "args": ["-y", "boostu-teamleader-mcp"],
      "env": {
        "TEAMLEADER_CLIENT_ID": "your-client-id",
        "TEAMLEADER_CLIENT_SECRET": "your-client-secret",
        "TEAMLEADER_REFRESH_TOKEN": "your-refresh-token"
      }
    }
  }
}

๐Ÿ” Authentication

You need three env vars: TEAMLEADER_CLIENT_ID, TEAMLEADER_CLIENT_SECRET, and TEAMLEADER_REFRESH_TOKEN. Obtain them by registering an integration in the Teamleader Marketplace / Developer portal and completing the OAuth2 authorization flow.

Teamleader rotates the refresh token on every API call. Set TEAMLEADER_TOKEN_STORE to a writable file path so the server can persist the latest token between restarts โ€” without it the token in your config will go stale after the first restart.

For the full step-by-step walkthrough (authorize URL, code exchange, helper scripts) see docs/AUTHENTICATION.md.


โš™๏ธ Configuration

Environment variables

NameRequiredDescription
TEAMLEADER_CLIENT_IDYesOAuth2 client ID from your Teamleader integration
TEAMLEADER_CLIENT_SECRETYesOAuth2 client secret from your Teamleader integration
TEAMLEADER_REFRESH_TOKENYesInitial refresh token obtained from the OAuth2 authorization flow
TEAMLEADER_TOKEN_STORENoPath to a writable file where the server persists the rotated refresh token (e.g. /var/run/teamleader-token). Strongly recommended in production.
TEAMLEADER_TOOLSNoComma-separated list of tool group keys to enable. When unset, all 21 groups are loaded.

Selective tool groups

Use TEAMLEADER_TOOLS to limit which tool groups are registered. This is useful when you want to keep the assistant's tool list small or restrict access to certain areas of Teamleader.

TEAMLEADER_TOOLS=deals,quotations,products

Full list of group keys:

KeyWhat it covers
contactsContacts CRUD
companiesCompanies CRUD
dealsDeals / opportunities
tasksTasks
eventsCalendar events
invoicesInvoices (create, book, send, pay, download)
quotationsQuotations (create, update, send, accept)
productsProduct catalog and price lists
referenceDeal phases, tax rates, payment terms, etc.
orgUsers, teams, departments
customFieldsCustom field definitions
creditNotesCredit notes
subscriptionsRecurring subscriptions
projectsProjects and milestones
timeTrackingTime log entries and live timers
activitiesCalls and meetings
ticketsSupport tickets
tagsAdd/remove tags on contacts and companies
notesNotes on any subject
filesFile list, download, upload
webhooksWebhook registration

๐Ÿงฐ Available Tools

Contacts

ToolDescription
teamleader_list_contactsList contacts from Teamleader Focus with optional filtering and pagination
teamleader_get_contactGet detailed information about a specific contact
teamleader_create_contactCreate a new contact in Teamleader Focus
teamleader_update_contactUpdate an existing contact in Teamleader Focus

Companies

ToolDescription
teamleader_list_companiesList companies from Teamleader Focus with optional filtering and pagination
teamleader_get_companyGet detailed information about a specific company
teamleader_create_companyCreate a new company in Teamleader Focus

Deals

ToolDescription
teamleader_list_dealsList deals/opportunities from Teamleader Focus with optional filtering and pagination
teamleader_get_dealGet detailed information about a specific deal
teamleader_create_dealCreate a new deal/opportunity in Teamleader Focus
teamleader_update_dealUpdate an existing deal in Teamleader Focus

Tasks

ToolDescription
teamleader_list_tasksList tasks from Teamleader Focus with optional filtering and pagination
teamleader_create_taskCreate a new task in Teamleader Focus

Events

ToolDescription
teamleader_list_eventsList calendar events from Teamleader Focus with optional filtering and pagination
teamleader_get_eventGet detailed information about a specific event
teamleader_create_eventCreate a new calendar event in Teamleader Focus

Invoices

ToolDescription
teamleader_list_invoicesList invoices from Teamleader Focus with optional filtering and pagination
teamleader_get_invoiceGet detailed information about a specific invoice
teamleader_create_invoiceCreate a new draft invoice in Teamleader Focus
teamleader_invoices_bookBook a draft invoice into accounting and assign it a number
teamleader_invoices_sendSend an invoice by email to the specified recipients
teamleader_invoices_register_paymentRegister a payment against an invoice
teamleader_invoices_downloadGet a temporary download URL for an invoice in the specified format

Quotations

ToolDescription
teamleader_quotations_listList quotations, optionally filtered by deal id
teamleader_quotations_infoGet a single quotation by id
teamleader_quotations_createCreate a quotation on a deal, providing one or more line items
teamleader_quotations_updateUpdate a quotation's line items
teamleader_quotations_acceptAccept a quotation (marks it accepted โ€” hard to undo)
teamleader_quotations_sendSend a quotation by email to the customer

Products

ToolDescription
teamleader_products_listList products, optionally filtered by search term
teamleader_products_infoGet a single product by id
teamleader_product_categories_listList product categories
teamleader_price_lists_listList price lists
teamleader_units_of_measure_listList units of measure

Reference Data

ToolDescription
teamleader_deal_phases_listList deal phases
teamleader_deal_pipelines_listList deal pipelines
teamleader_deal_sources_listList deal sources
teamleader_lost_reasons_listList lost reasons for deals
teamleader_tax_rates_listList tax rates
teamleader_payment_terms_listList payment terms
teamleader_withholding_tax_rates_listList withholding tax rates

Organisation

ToolDescription
teamleader_users_listList users, optionally filtered by search term
teamleader_users_infoGet a single user by id
teamleader_users_meGet the currently authenticated user
teamleader_teams_listList teams
teamleader_departments_listList departments

Custom Fields

ToolDescription
teamleader_custom_field_definitions_listList custom field definitions
teamleader_custom_field_definitions_infoGet a single custom field definition by id

Credit Notes

ToolDescription
teamleader_credit_notes_listList credit notes, optionally filtered by invoice or department
teamleader_credit_notes_infoGet a single credit note by id

Subscriptions

ToolDescription
teamleader_subscriptions_listList subscriptions, optionally filtered by customer
teamleader_subscriptions_infoGet a single subscription by id
teamleader_subscriptions_createCreate a new subscription (starts recurring invoicing for the customer)
teamleader_subscriptions_updateUpdate a subscription's title
teamleader_subscriptions_deactivateDeactivate a subscription (stops future invoicing)

Projects

ToolDescription
teamleader_projects_listList projects, optionally filtered by search term or customer
teamleader_projects_infoGet a single project by id
teamleader_projects_createCreate a new project for a customer
teamleader_milestones_listList milestones, optionally filtered by project
teamleader_milestones_createCreate a milestone on a project

Time Tracking

ToolDescription
teamleader_time_tracking_listList time tracking entries, optionally filtered by user
teamleader_time_tracking_addAdd a time tracking entry
teamleader_time_tracking_updateUpdate a time tracking entry's duration or description
teamleader_timer_startStart a running timer
teamleader_timer_stopStop a running timer and create a time tracking entry

Activities (Calls & Meetings)

ToolDescription
teamleader_calls_listList calls, optionally filtered by customer
teamleader_calls_createCreate a call activity
teamleader_calls_completeMark a call as completed
teamleader_meetings_listList meetings
teamleader_meetings_createSchedule a meeting
teamleader_meetings_completeMark a meeting as completed

Tickets

ToolDescription
teamleader_tickets_listList support tickets, optionally filtered by customer or status
teamleader_tickets_infoGet a single support ticket by id
teamleader_tickets_createCreate a new support ticket for a customer
teamleader_tickets_updateUpdate a ticket's subject or status
teamleader_tickets_add_messageAdd a reply/message to a ticket thread
teamleader_ticket_status_listList all available ticket statuses

Tags

ToolDescription
teamleader_contacts_add_tagsAdd one or more tags to a contact
teamleader_contacts_remove_tagsRemove one or more tags from a contact
teamleader_companies_add_tagsAdd one or more tags to a company
teamleader_companies_remove_tagsRemove one or more tags from a company

Notes

ToolDescription
teamleader_notes_listList notes linked to a subject (contact, company, deal, etc.)
teamleader_notes_createCreate a note linked to a subject

Files

ToolDescription
teamleader_files_listList files linked to a subject (contact, company, deal, etc.)
teamleader_files_downloadGet a temporary download URL for a file by its ID
teamleader_files_uploadInitiate a two-step file upload and return the upload URL

Webhooks

ToolDescription
teamleader_webhooks_listList registered webhooks
teamleader_webhooks_registerRegister a webhook URL for the given event types
teamleader_webhooks_unregisterUnregister a webhook URL for the given event types

๐Ÿ’ฌ Example Prompts

Create a quotation for deal <id> with two line items: 5 hours of consulting at โ‚ฌ150/h and a one-time setup fee of โ‚ฌ500.
Book the draft invoice <id> into accounting and then send it to the customer.
Register a โ‚ฌ1 200 payment against invoice <id> received today via bank transfer.
Log 2.5 hours on project <id> for user <user_id> with the note "API integration work".
Start a timer for me right now โ€” I'm working on the BoostU onboarding project.
Open a support ticket for company <id>: subject "Login not working", priority high.
What deal phase IDs do we have in pipeline <id>? I need to move deal <id> to the "Proposal sent" phase.
List all products in the "Hosting" category and their prices.
Create a monthly subscription for company <id>: product <product_id>, quantity 1, starting next month.
Show me all open deals with their current phases and tell me which ones haven't moved in the last 30 days.

๐Ÿณ Docker

docker run --rm \
  -e TEAMLEADER_CLIENT_ID=your-client-id \
  -e TEAMLEADER_CLIENT_SECRET=your-client-secret \
  -e TEAMLEADER_REFRESH_TOKEN=your-refresh-token \
  -e TEAMLEADER_TOKEN_STORE=/data/teamleader-token \
  -v /var/run/teamleader:/data \
  ghcr.io/boostuagency/boostu-teamleader-mcp

๐Ÿ› ๏ธ Development

# Clone and install
git clone https://github.com/boostuagency/boostu-teamleader-mcp.git
cd boostu-teamleader-mcp
npm install

# Run in development mode (no build step required)
npm run dev

# Build
npm run build

# Run tests
npm test

# Type-check only
npm run typecheck

๐Ÿ—๏ธ Architecture

The core of the server is createServer in src/server.ts, which is transport-agnostic โ€” it takes a TeamleaderClient and registers the enabled tool groups, returning a plain McpServer instance that the entry point (src/index.ts) wires to a StdioServerTransport. Tool logic lives in per-domain modules under src/tools/, each following a consistent try / respond / catch / respondError pattern using shared helpers in src/lib/. OAuth2 token acquisition and rotation are handled entirely in src/api/auth.ts, transparent to the rest of the codebase. A hosted, multi-tenant edition of this server is available at teamleader-mcp.boostu.be.


โœ… Endpoint Verification

Most read endpoints (*.list, *.info) have been live-verified against the Teamleader Focus API. Several write and action endpoints (e.g. subscriptions.create, projects.create, files.upload) are implemented from the official documentation but have not been tested against a live account with the relevant module active. If an endpoint name is wrong, the call will fail with a clear HTTP error message rather than silently misbehaving. The full endpoint manifest and verification status are documented in docs/teamleader-endpoints.md.


๐Ÿค Contributing

See CONTRIBUTING.md for development setup, commit conventions, and instructions on adding new tool groups.


๐Ÿ”’ Security

Report security vulnerabilities to nick@boostu.be โ€” do not open a public issue. See SECURITY.md for the disclosure policy. Never commit .env files or .teamleader-token to version control; both are listed in .gitignore.


โš–๏ธ Disclaimer

This is an independent, community-built integration. It is not affiliated with, endorsed by, or sponsored by Teamleader NV. "Teamleader" and "Teamleader Focus" are trademarks of Teamleader NV and are used here only to describe compatibility. You are responsible for your own use of the Teamleader API under Teamleader's terms.


๐Ÿ“„ License

MIT License โ€” Copyright (c) 2026 BoostU Agency. See NOTICE for upstream attribution.

Reviews

No reviews yet

Be the first to review this server!

Boostu Teamleader MCP Server - MCP server for Teamleader Focus CRM. Use Teamleader in | MCP Marketplace