teamleader-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@teamleader-mcpList all open deals for Acme Corporation"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
What is this?
A Model Context Protocol (MCP) server that connects AI assistants like Claude to Teamleader Focus - the all-in-one CRM, invoicing, and project management platform.
Instead of clicking through menus, just ask:
"Find all open deals for Acme Corporation"
"Create an invoice for 20 hours of consulting at €125/hour"
"Schedule a meeting with Sarah from TechStart next Tuesday at 2pm"
"Log 3 hours to the website project with description: frontend development"Related MCP server: AI-Assisted CRM MCP Server
Screenshots
Description | Image |
Claude Desktop with deal lookup |
|
Invoice creation conversation |
|
Multi-step workflow example |
|
Claude Desktop config |
|
Features
🏢 CRM
Companies - List, search, create, and update companies
Contacts - Full contact management with company linking
Deals - Pipeline management, move phases, win/lose tracking
💰 Finance
Invoices - Draft, send, book, register payments
Quotations - Create, send, accept, download PDFs
Products - Product catalog management
⏱️ Operations
Time Tracking - Log hours, manage entries, billable tracking
Calendar Events - Create and manage meetings linked to contacts/deals
Email Tracking - Log emails to entities
🔐 Security
OAuth 2.0 with automatic token refresh
Secure credential storage
Rate limiting respect
Quick Start
1. Authenticate with Teamleader
npx teamleader-mcp authThis opens a browser for OAuth login. Your credentials are saved automatically.
2. Configure Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"teamleader": {
"command": "npx",
"args": ["-y", "teamleader-mcp"]
}
}
}3. Start Using!
Restart Claude Desktop and ask: "What Teamleader tools do you have access to?"
Installation
Prerequisites
Node.js 18 or higher
A Teamleader Focus account
OAuth 2.0 credentials from Teamleader Marketplace
Via npx (Recommended)
No installation needed - runs directly:
npx teamleader-mcp auth # One-time OAuth setup
npx teamleader-mcp # Start the MCP serverGlobal Install
npm install -g teamleader-mcp
teamleader-mcp authFrom Source
git clone https://github.com/Weichie-com/teamleader-mcp.git
cd teamleader-mcp
npm install
npm run buildOAuth Setup
1. Register Your Integration
Go to Teamleader Marketplace
Create a new integration
Note your
client_idandclient_secretSet redirect URI:
http://localhost:3000/callbackRequired scopes:
contacts,companies,deals,invoices,products,timetracking,events,users
2. Generate Tokens
The easiest way:
node scripts/generate-token.jsOr manually via OAuth authorization code flow - see OAUTH_CLAUDE_SETUP.md.
3. Configure Environment
cp .env.example .envEdit .env:
TEAMLEADER_ACCESS_TOKEN=your_access_token
TEAMLEADER_CLIENT_ID=your_client_id
TEAMLEADER_CLIENT_SECRET=your_client_secret
TEAMLEADER_REFRESH_TOKEN=your_refresh_tokenTools
This server provides 42 tools across all major Teamleader Focus features:
Companies (4 tools)
Tool | Description |
| List/search companies |
| Get company details |
| Create a company |
| Update a company |
Contacts (2 tools)
Tool | Description |
| List/search contacts |
| Get contact details |
Deals (7 tools)
Tool | Description |
| List deals with filters |
| Get deal details |
| Create a deal |
| Update a deal |
| Move to different phase |
| Mark as won |
| Mark as lost |
Invoices (7 tools)
Tool | Description |
| List invoices |
| Get invoice details |
| Create draft invoice |
| Update invoice |
| Send via email |
| Book/finalize |
| Register payment |
| Delete invoice |
Quotations (7 tools)
Tool | Description |
| List quotations |
| Get quotation details |
| Create quotation |
| Update quotation |
| Send via email |
| Mark as accepted |
| Delete quotation |
| Get PDF link |
Products (4 tools)
Tool | Description |
| List products |
| Get product details |
| Create product |
| Update product |
Time Tracking (5 tools)
Tool | Description |
| List time entries |
| Get entry details |
| Add time entry |
| Update entry |
| Delete entry |
Calendar Events (3 tools)
Tool | Description |
| List events |
| Get event details |
| Create event |
Email Tracking (2 tools)
Tool | Description |
| List tracked emails |
| Log an email |
Examples
Natural Language → Actions
"Find all open deals worth more than €10,000"
→ teamleader_deals_list(status: ["open"])
→ Filters results by value"Create an invoice for Acme Corp: 20 hours consulting at €125/hour, 30 days payment term"
→ teamleader_companies_list(term: "Acme Corp")
→ teamleader_invoice_draft(customer_id: "...", grouped_lines: [...])"Schedule a meeting with John from DataFlow next Tuesday at 2pm"
→ teamleader_contacts_list(term: "John DataFlow")
→ teamleader_event_create(title: "Meeting", starts_at: "...", contact_ids: [...])Direct Tool Calls
# List open deals
mcporter call teamleader.teamleader_deals_list status='["open"]'
# Get company info
mcporter call teamleader.teamleader_company_info id="uuid-here"
# Create a time entry
mcporter call teamleader.teamleader_timetracking_add \
started_at="2026-01-31T09:00:00+01:00" \
ended_at="2026-01-31T12:00:00+01:00" \
description="Development work"Configuration Options
Environment Variables
Variable | Required | Description |
| Yes | OAuth access token |
| No* | OAuth client ID |
| No* | OAuth client secret |
| No* | OAuth refresh token |
| No | Custom token storage path |
*Required for automatic token refresh (recommended)
Token Refresh Modes
Static Mode: Only ACCESS_TOKEN set. Token expires after 1 hour. Manual refresh needed.
Auto Refresh Mode (Recommended): All four OAuth variables set. Tokens refresh automatically 5 minutes before expiry.
Troubleshooting
Make sure your config includes the args array:
{
"command": "node",
"args": ["/path/to/teamleader-mcp/dist/index.js"] // ← Required!
}Tool names are prefixed with teamleader_. Use teamleader_deal_info, not get-deal.
Run mcporter list teamleader to see all tools.
Access tokens expire after 1 hour. Set up automatic refresh with all OAuth variables, or manually refresh your token.
Teamleader allows 200 requests/minute. The server respects rate limit headers. Wait and retry, or reduce request frequency.
Development
# Build
npm run build
# Watch mode
npm run dev
# Test
npm test # Watch mode
npm run test:run # Single run
# Lint
npm run lintContributing
We welcome contributions! Here's how to help:
Bug Reports & Feature Requests
Open an issue with a clear description
Include steps to reproduce for bugs
For features, explain the use case
Pull Requests
Fork the repository
Create a feature branch:
git checkout -b feature/amazing-featureMake your changes
Run tests:
npm testCommit:
git commit -m 'Add amazing feature'Push:
git push origin feature/amazing-featureOpen a Pull Request
Code Style
TypeScript with strict mode
Prettier for formatting
ESLint for linting
Descriptive commit messages
Adding New Tools
Add the tool definition in
src/tools/Implement the handler
Add tests in
tests/Update this README
Roadmap
npm package publication
Project management tools (milestones, tasks)
Webhook support for real-time updates
Batch operations
More filter options
Credit notes support
See ROADMAP.md for details.
Related Resources
License
MIT License - see LICENSE file.
Acknowledgments
Built with ❤️ using the Model Context Protocol by Anthropic.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Weichie-com/teamleader-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server