mcp-server-toggl
Team-wide Toggl Track time tracking, reporting, and workspace management via Reports API v3
mcp-server-toggl
An MCP server for Toggl Track that provides team-wide time tracking, reporting, and workspace management through the Model Context Protocol.
Built on Toggl's v9 API and Reports API v3, this server lets AI assistants query time entries, generate summary reports, and browse workspace data across your entire team — not just the authenticated user.
Setup
1. Get a Toggl API Token
- Log in to Toggl Track
- Go to your Profile Settings
- Scroll to the bottom and copy your API Token
2. Configure Claude Desktop
Add this to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"toggl": {
"command": "npx",
"args": ["-y", "mcp-server-toggl"],
"env": {
"TOGGL_API_TOKEN": "your-api-token-here"
}
}
}
}
3. Build from Source (optional)
git clone https://github.com/longrackslabs/mcp-server-toggl.git
cd mcp-server-toggl
npm install
npm run build
Then point your MCP client at the built server:
{
"mcpServers": {
"toggl": {
"command": "node",
"args": ["/path/to/mcp-server-toggl/dist/index.js"],
"env": {
"TOGGL_API_TOKEN": "your-api-token-here"
}
}
}
}
Tools
Workspace & Organization
| Tool | Description |
|---|---|
toggl_list_workspaces | List all accessible workspaces with IDs and premium status |
toggl_list_projects | List projects in a workspace (auto-paginated, filterable by active status and client) |
toggl_get_project | Get details for a single project |
toggl_list_clients | List all clients in a workspace |
toggl_list_users | List team members with IDs, names, and emails (requires admin access) |
toggl_list_tasks | List tasks within a project (sub-categories like Vacation, Sick, Holiday) |
Reporting
| Tool | Description |
|---|---|
toggl_search_time_entries | Search time entries across all team members. Supports filtering by project, client, user, task, and description. Auto-paginates and enriches results with names. |
toggl_get_summary_report | Get aggregated time totals grouped by users, projects, or clients. Supports sub-grouping for breakdowns like "each user's time by project." |
Example Prompts
- "How many hours did each team member log last week?"
- "Show me all time entries for the Marketing project this month"
- "What's the PTO breakdown by person for Q1?"
- "List all active projects in workspace 12345"
- "How much time was logged against Client X in January?"
Requirements
- Node.js 18+
- A Toggl Track account with an API token
- Admin access for
toggl_list_users(other tools work with any role)
License
MIT
Похожие серверы
Jasper AI
An MCP server for interacting with the Jasper AI API to generate various types of content.
Notion
Connects AI assistants to your Notion workspace, allowing you to search, create, and manage content using natural language.
MCP Workflow Orchestration Server
Enables AI agents to discover, create, and execute complex, multi-step workflows defined in simple YAML files.
Atlassian MCP Client
An MCP client for integrating with Atlassian tools like Jira and Confluence using OAuth authentication.
prototype assistant
The MCP tool that allows AI to directly create prototypes based on HTML enables rapid construction of software prototypes even without Figma or Axure.
Vedit-MCP
Perform basic video editing operations using natural language commands. Requires ffmpeg to be installed.
Productive.io
Interact with the Productive.io API for project management and productivity tasks.
JSON Canvas MCP Server
A server for creating, modifying, validating, and exporting JSON Canvas files, a format for infinite canvas data.
Feishu/Lark OpenAPI MCP
Connect AI agents to Feishu/Lark APIs for document processing, conversation management, and calendar scheduling.
Task Orchestrator
AI-powered task orchestration and workflow automation with specialized agent roles, intelligent task decomposition, and seamless integration across Claude Desktop, Cursor IDE, Windsurf, and VS Code.