Server data from the Official MCP Registry
MCP server for Teamleader Focus CRM. Use Teamleader in Claude and other AI assistants.
MCP server for Teamleader Focus CRM. Use Teamleader in Claude and other AI assistants.
This is a well-structured MCP server for Teamleader CRM integration with proper OAuth2 authentication and reasonable permissions. The code is clean and follows secure patterns for token handling. However, there are minor concerns around input validation in some dynamic request paths and broad `extra` parameter handling in certain tools that could allow unintended API calls. Supply chain analysis found 3 known vulnerabilities in dependencies (1 critical, 2 high severity). Package verification found 1 issue.
5 files analyzed ยท 9 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: TEAMLEADER_CLIENT_ID
Environment variable: TEAMLEADER_CLIENT_SECRET
Environment variable: TEAMLEADER_REFRESH_TOKEN
Environment variable: TEAMLEADER_TOKEN_STORE
Environment variable: TEAMLEADER_TOOLS
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"
}
}
}From the project's GitHub README.
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) | |
|---|---|---|
| Price | Free, MIT-licensed | Free preview, then paid |
| Setup | Create your own Teamleader integration, run via npx | Copy one connector URL into Claude |
| Tokens | You manage .env and the refresh token | Encrypted and rotated for you |
| Best for | Developers and self-hosters | Non-technical teams |
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.
TEAMLEADER_TOOLS to keep your assistant's context leannpx boostu-teamleader-mcp
npm i -g boostu-teamleader-mcp
boostu-teamleader-mcp
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"
}
}
}
}
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"
}
}
}
}
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"
}
}
}
}
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"
}
}
}
}
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.
| Name | Required | Description |
|---|---|---|
TEAMLEADER_CLIENT_ID | Yes | OAuth2 client ID from your Teamleader integration |
TEAMLEADER_CLIENT_SECRET | Yes | OAuth2 client secret from your Teamleader integration |
TEAMLEADER_REFRESH_TOKEN | Yes | Initial refresh token obtained from the OAuth2 authorization flow |
TEAMLEADER_TOKEN_STORE | No | Path to a writable file where the server persists the rotated refresh token (e.g. /var/run/teamleader-token). Strongly recommended in production. |
TEAMLEADER_TOOLS | No | Comma-separated list of tool group keys to enable. When unset, all 21 groups are loaded. |
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:
| Key | What it covers |
|---|---|
contacts | Contacts CRUD |
companies | Companies CRUD |
deals | Deals / opportunities |
tasks | Tasks |
events | Calendar events |
invoices | Invoices (create, book, send, pay, download) |
quotations | Quotations (create, update, send, accept) |
products | Product catalog and price lists |
reference | Deal phases, tax rates, payment terms, etc. |
org | Users, teams, departments |
customFields | Custom field definitions |
creditNotes | Credit notes |
subscriptions | Recurring subscriptions |
projects | Projects and milestones |
timeTracking | Time log entries and live timers |
activities | Calls and meetings |
tickets | Support tickets |
tags | Add/remove tags on contacts and companies |
notes | Notes on any subject |
files | File list, download, upload |
webhooks | Webhook registration |
| Tool | Description |
|---|---|
teamleader_list_contacts | List contacts from Teamleader Focus with optional filtering and pagination |
teamleader_get_contact | Get detailed information about a specific contact |
teamleader_create_contact | Create a new contact in Teamleader Focus |
teamleader_update_contact | Update an existing contact in Teamleader Focus |
| Tool | Description |
|---|---|
teamleader_list_companies | List companies from Teamleader Focus with optional filtering and pagination |
teamleader_get_company | Get detailed information about a specific company |
teamleader_create_company | Create a new company in Teamleader Focus |
| Tool | Description |
|---|---|
teamleader_list_deals | List deals/opportunities from Teamleader Focus with optional filtering and pagination |
teamleader_get_deal | Get detailed information about a specific deal |
teamleader_create_deal | Create a new deal/opportunity in Teamleader Focus |
teamleader_update_deal | Update an existing deal in Teamleader Focus |
| Tool | Description |
|---|---|
teamleader_list_tasks | List tasks from Teamleader Focus with optional filtering and pagination |
teamleader_create_task | Create a new task in Teamleader Focus |
| Tool | Description |
|---|---|
teamleader_list_events | List calendar events from Teamleader Focus with optional filtering and pagination |
teamleader_get_event | Get detailed information about a specific event |
teamleader_create_event | Create a new calendar event in Teamleader Focus |
| Tool | Description |
|---|---|
teamleader_list_invoices | List invoices from Teamleader Focus with optional filtering and pagination |
teamleader_get_invoice | Get detailed information about a specific invoice |
teamleader_create_invoice | Create a new draft invoice in Teamleader Focus |
teamleader_invoices_book | Book a draft invoice into accounting and assign it a number |
teamleader_invoices_send | Send an invoice by email to the specified recipients |
teamleader_invoices_register_payment | Register a payment against an invoice |
teamleader_invoices_download | Get a temporary download URL for an invoice in the specified format |
| Tool | Description |
|---|---|
teamleader_quotations_list | List quotations, optionally filtered by deal id |
teamleader_quotations_info | Get a single quotation by id |
teamleader_quotations_create | Create a quotation on a deal, providing one or more line items |
teamleader_quotations_update | Update a quotation's line items |
teamleader_quotations_accept | Accept a quotation (marks it accepted โ hard to undo) |
teamleader_quotations_send | Send a quotation by email to the customer |
| Tool | Description |
|---|---|
teamleader_products_list | List products, optionally filtered by search term |
teamleader_products_info | Get a single product by id |
teamleader_product_categories_list | List product categories |
teamleader_price_lists_list | List price lists |
teamleader_units_of_measure_list | List units of measure |
| Tool | Description |
|---|---|
teamleader_deal_phases_list | List deal phases |
teamleader_deal_pipelines_list | List deal pipelines |
teamleader_deal_sources_list | List deal sources |
teamleader_lost_reasons_list | List lost reasons for deals |
teamleader_tax_rates_list | List tax rates |
teamleader_payment_terms_list | List payment terms |
teamleader_withholding_tax_rates_list | List withholding tax rates |
| Tool | Description |
|---|---|
teamleader_users_list | List users, optionally filtered by search term |
teamleader_users_info | Get a single user by id |
teamleader_users_me | Get the currently authenticated user |
teamleader_teams_list | List teams |
teamleader_departments_list | List departments |
| Tool | Description |
|---|---|
teamleader_custom_field_definitions_list | List custom field definitions |
teamleader_custom_field_definitions_info | Get a single custom field definition by id |
| Tool | Description |
|---|---|
teamleader_credit_notes_list | List credit notes, optionally filtered by invoice or department |
teamleader_credit_notes_info | Get a single credit note by id |
| Tool | Description |
|---|---|
teamleader_subscriptions_list | List subscriptions, optionally filtered by customer |
teamleader_subscriptions_info | Get a single subscription by id |
teamleader_subscriptions_create | Create a new subscription (starts recurring invoicing for the customer) |
teamleader_subscriptions_update | Update a subscription's title |
teamleader_subscriptions_deactivate | Deactivate a subscription (stops future invoicing) |
| Tool | Description |
|---|---|
teamleader_projects_list | List projects, optionally filtered by search term or customer |
teamleader_projects_info | Get a single project by id |
teamleader_projects_create | Create a new project for a customer |
teamleader_milestones_list | List milestones, optionally filtered by project |
teamleader_milestones_create | Create a milestone on a project |
| Tool | Description |
|---|---|
teamleader_time_tracking_list | List time tracking entries, optionally filtered by user |
teamleader_time_tracking_add | Add a time tracking entry |
teamleader_time_tracking_update | Update a time tracking entry's duration or description |
teamleader_timer_start | Start a running timer |
teamleader_timer_stop | Stop a running timer and create a time tracking entry |
| Tool | Description |
|---|---|
teamleader_calls_list | List calls, optionally filtered by customer |
teamleader_calls_create | Create a call activity |
teamleader_calls_complete | Mark a call as completed |
teamleader_meetings_list | List meetings |
teamleader_meetings_create | Schedule a meeting |
teamleader_meetings_complete | Mark a meeting as completed |
| Tool | Description |
|---|---|
teamleader_tickets_list | List support tickets, optionally filtered by customer or status |
teamleader_tickets_info | Get a single support ticket by id |
teamleader_tickets_create | Create a new support ticket for a customer |
teamleader_tickets_update | Update a ticket's subject or status |
teamleader_tickets_add_message | Add a reply/message to a ticket thread |
teamleader_ticket_status_list | List all available ticket statuses |
| Tool | Description |
|---|---|
teamleader_contacts_add_tags | Add one or more tags to a contact |
teamleader_contacts_remove_tags | Remove one or more tags from a contact |
teamleader_companies_add_tags | Add one or more tags to a company |
teamleader_companies_remove_tags | Remove one or more tags from a company |
| Tool | Description |
|---|---|
teamleader_notes_list | List notes linked to a subject (contact, company, deal, etc.) |
teamleader_notes_create | Create a note linked to a subject |
| Tool | Description |
|---|---|
teamleader_files_list | List files linked to a subject (contact, company, deal, etc.) |
teamleader_files_download | Get a temporary download URL for a file by its ID |
teamleader_files_upload | Initiate a two-step file upload and return the upload URL |
| Tool | Description |
|---|---|
teamleader_webhooks_list | List registered webhooks |
teamleader_webhooks_register | Register a webhook URL for the given event types |
teamleader_webhooks_unregister | Unregister a webhook URL for the given event types |
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 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
# 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
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.
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.
See CONTRIBUTING.md for development setup, commit conventions, and instructions on adding new tool groups.
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.
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.
MIT License โ Copyright (c) 2026 BoostU Agency. See NOTICE for upstream attribution.
Be the first to review this server!
by Modelcontextprotocol ยท Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno ยท Developer Tools
Toleno Network MCP Server โ Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace ยท Developer Tools
Create, build, and publish Python MCP servers to PyPI โ conversationally.