toggl-mcp
Allows interaction with Toggl Track API to manage time entries: retrieve current timer, recent entries, projects, summary, start/stop timer, and profile.
Allows interaction with Toggl Track API to manage time entries: retrieve current timer, recent entries, projects, summary, start/stop timer, and profile.
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., "@toggl-mcpWhat am I currently tracking in Toggl?"
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.
toggl-mcp
A Model Context Protocol (MCP) server that gives Claude access to your Toggl Track time tracking data.
Ask Claude things like:
"What am I tracking right now?"
"How much time did I spend on each project this week?"
"Start a timer for writing documentation on the Blog project"
"Stop my timer"
"What did I work on yesterday?"
Tools
Tool | What it does |
| Shows the currently running time entry |
| Time entries for the past N days (default 7) |
| Lists all your projects |
| Total time by project for a date range |
| Starts a new time entry |
| Stops the current timer |
| Your Toggl profile and workspaces |
Related MCP server: Toggl MCP Server
Setup
1. Get your API token
Scroll to the bottom
Click "Click to reveal" under API Token
Copy the token
2. Install
npm install -g toggl-mcpFind the installed path:
which toggl-mcp3. Add to Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"toggl": {
"command": "/path/from/which/toggl-mcp",
"env": {
"TOGGL_API_TOKEN": "your_token_here"
}
}
}
}Or if running from source:
{
"mcpServers": {
"toggl": {
"command": "node",
"args": ["/path/to/toggl-mcp/dist/index.js"],
"env": {
"TOGGL_API_TOKEN": "your_token_here"
}
}
}
}Restart Claude Desktop. You should see a green "running" badge in Settings → Developer.
4. Test it
What am I currently tracking in Toggl?Example queries
Daily check-in:
What have I tracked today in Toggl?Weekly review:
Give me a summary of how I spent my time this week by projectStart tracking:
Start a Toggl timer for "reviewing PRs" on my Engineering projectStop and summarize:
Stop my timer and tell me how long I workedProductivity analysis:
How much time did I track last week vs the week before?
Which project took the most time?Development
git clone https://github.com/yourusername/toggl-mcp
cd toggl-mcp
npm install
npm run build
# Test locally
TOGGL_API_TOKEN=your_token node dist/index.jsProject structure
toggl-mcp/
├── src/
│ ├── index.ts # MCP server + tool definitions
│ └── toggl.ts # Toggl API v9 client + formatters
├── package.json
├── tsconfig.json
└── README.mdRate limits
Toggl's free plan allows 30 requests/hour per workspace. This MCP server batches calls where possible (e.g. fetching projects and entries in parallel) to stay well within limits for normal use.
Contributing
PRs welcome. Ideas for extension:
Tags management
Client listing
Detailed reports (daily breakdown)
Time entry editing
License
MIT
Acknowledgements
Built with the MCP TypeScript SDK and the Toggl Track API v9.
Available Tools
7 toolsget_current_timerA
Get the currently running Toggl time entry, if any
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, and the description does not disclose behavioral aspects such as return format, side effects, or auth requirements. The phrase 'if any' hints at null returns but is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, front-loaded with the key action and resource. No unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no parameters, no output schema, and a simple operation, the description is nearly complete. It could explicitly state that it returns null when no timer is running, but this is implied.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, so the description does not need to add parameter meaning. Schema coverage is 100%, meeting the baseline for zero parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and the specific resource 'currently running Toggl time entry', distinguishing it from sibling tools like get_recent_entries and start_timer.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives (e.g., get_recent_entries). The description does not mention scenarios like no active timer.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_profileA
Get the user's Toggl profile — name, email, timezone, and workspace info
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Since no annotations are provided, the description carries full burden. It explicitly states the output fields (name, email, timezone, workspace info), implying a read-only, non-destructive operation. However, it does not mention authentication, rate limits, or other potential behaviors, but for a profile getter this is sufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence with 14 words. Every word serves a purpose, and there is no redundancy. It is concise without being terse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no parameters and no output schema, the description is complete. It clearly states what the tool returns, and for a simple profile retrieval, no additional context is needed. The sibling tools are sufficiently differentiated.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are no parameters, so schema coverage is 100%. Baseline is 3, but the description adds value by listing the returned fields, which helps the agent understand what data will be retrieved. This goes beyond mere parameter description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'Get' and resource 'user's Toggl profile', clearly stating the purpose. It lists returned fields (name, email, timezone, workspace info) and distinguishes itself from sibling tools like 'get_recent_entries' or 'get_projects' which focus on different data.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implicitly indicates when to use it – when you need the user's profile information. However, it lacks explicit guidance on when not to use it or alternatives. For a no-parameter, straightforward tool, this is acceptable but not optimal.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_projectsA
List all Toggl projects in your workspace
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It only states 'List all Toggl projects' without disclosing behaviors like authentication requirements, pagination, or whether archived projects are included. This leaves significant gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with no unnecessary words. It is front-loaded and efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no parameters, no output schema, and a simple task, the description is mostly complete. It specifies the scope ('in your workspace') and the resource. Minor missing details like include/exclude archived projects would improve it, but it is adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters and 100% schema coverage. The description adds no parameter information, but since there are no parameters, the baseline is 4. It correctly implies the tool takes no input.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it lists all Toggl projects in your workspace. The verb 'list' and resource 'projects' are specific, and it distinguishes from sibling tools like get_recent_entries or start_timer.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives, no exclusions, and no context for usage. It simply states what it does without any strategic direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_recent_entriesA
Get time entries from the past N days (default 7). Useful for reviewing what you worked on.
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | Number of days to look back (max 90) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the description only says 'get', implying a read operation. It does not explicitly state that the tool is non-destructive, nor does it disclose any side effects or behavioral traits beyond the obvious.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences long, with no superfluous words. It is front-loaded with the core functionality immediately.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one parameter and no output schema, the description is adequate but lacks details about the return format or the nature of the time entries. It does not fully compensate for the absent output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and the parameter is well-documented in the schema. The description adds only 'default 7', which repeats the schema's default. No additional semantic value beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Get time entries from the past N days', specifying the action (get) and resource (time entries). This distinguishes it from sibling tools like get_projects, get_current_timer, etc.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description includes 'Useful for reviewing what you worked on', which provides a use case but no explicit guidance on when to use this tool versus alternatives like get_summary or get_current_timer.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_summaryA
Get total time tracked per project for a date range. Defaults to the current week.
| Name | Required | Description | Default |
|---|---|---|---|
| end_date | No | End date in YYYY-MM-DD format (default: today) | |
| start_date | No | Start date in YYYY-MM-DD format (default: start of current week) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It indicates a read-only query ('Get total time') with no side effects, but does not disclose potential rate limits, authentication requirements, or any other behavioral constraints beyond the implied safe operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the core purpose, and contains no unnecessary words. Every piece of information is relevant and efficiently presented.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with two parameters and no output schema, the description adequately covers the return value (total time per project) and default behaviors. It does not detail the return structure (e.g., list vs. object) but remains complete enough for an agent to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Both parameters are fully covered by the schema (100% coverage) with clear formats. The description adds context by explaining defaults ('Defaults to the current week') and how the parameters together produce per-project totals, enhancing understanding beyond the raw schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Get'), resource ('total time tracked per project'), and scope ('for a date range'), effectively distinguishing it from siblings like 'get_recent_entries' (individual entries) and 'get_projects' (project list).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for aggregated time summaries per project, but does not explicitly state when not to use it or name alternative tools for finer-grained data (e.g., 'get_recent_entries'). No exclusions or prerequisites are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
start_timerB
Start a new Toggl time entry. Provide a description and optionally a project name.
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Optional tags to apply to this time entry | |
| description | Yes | What you are working on | |
| project_name | No | Project name to log time against (must match an existing project name exactly) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It only says 'Start a new Toggl time entry', but does not disclose critical traits such as whether it stops an existing timer, what happens on duplicate timers, or authentication requirements. This lack of detail leaves the agent unprepared.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence that front-loads the purpose. Every word is necessary; there is no redundancy or extraneous information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple tool (3 params, no output schema, no annotations), the description covers the basic action but omits important context like what happens if a timer is already running, error conditions, or how tags are used. It is adequate but incomplete for a production agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All parameters have descriptions in the schema (100% coverage). The description essentially repeats that a description is required and project name is optional, adding no new interpretation or nuance. Thus it contributes no extra value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Start' and resource 'Toggl time entry'. It mentions the key input (description and optional project name), making the purpose clear. However, it does not differentiate from sibling tools, but siblings are sufficiently distinct that lack of explicit differentiation is not critical.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool vs alternatives. It does not mention that an active timer may be overwritten or that starting a new timer might stop the previous one. There is no context about prerequisites or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
stop_timerA
Stop the currently running Toggl time entry
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must bear the full burden of behavioral disclosure. It does not mention what happens if no timer is running, whether the operation is idempotent, or what the return value is. This lack of detail is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with a single sentence that is front-loaded and contains no unnecessary words. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity of the tool (no parameters, no output schema), the description is minimally complete. However, it lacks behavioral context such as error conditions or side effects, which prevents it from being fully self-contained.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are no parameters; the description does not need to explain any parameter semantics. Baseline score of 4 is appropriate for zero parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (stop) and the specific resource (currently running Toggl time entry). It uses a specific verb and resource, and it distinguishes itself from the sibling tool 'start_timer'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool (when there is a running time entry), but it does not provide explicit guidance on alternatives or when not to use it. For a simple tool, this is adequate but not exceptional.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
7 tool updates
v1.0.0- First observed
get_current_timer - First observed
get_profile - First observed
get_projects - First observed
get_recent_entries - First observed
get_summary - First observed
start_timer - First observed
stop_timer
TDQS
Each tool targets a distinct aspect of Toggl: entries, projects, current timer, summary, timer start/stop, and profile. No overlap in functionality.
All tool names follow a consistent verb_noun pattern (get_, start_, stop_), making the API predictable.
7 tools cover core time tracking operations without bloat. The number is well-scoped for the domain.
Covers essential actions (view, start, stop, summary, profile) but lacks edit or delete of time entries, which is a minor gap.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Read time entries, projects, clients, tasks and invoices; log and update tracked time.
WHOOP recovery, strain, sleep and workouts in Claude via official WHOOP OAuth. Free, open source.
Connect Claude to Fathom meeting recordings, transcripts, and summaries
Track time on usetimebook.com - start/stop timers, log entries, list projects/clients.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables control of Toggl time tracking directly from LLMs like Claude or ChatGPT. Supports starting/stopping timers, viewing current and historical time entries, managing projects, and generating weekly summaries through natural language.8233MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to interact with the Toggl time tracking API to manage time entries, projects, and workspaces through natural language.22MIT
- AlicenseAqualityDmaintenanceEnables AI assistants to manage Toggl Track time entries, projects, and workspaces through natural language, supporting CRUD operations and past date time slots.1362MIT
- AlicenseAqualityCmaintenanceEnables Claude to manage ATimeLogger time tracking: start/stop/pause activities, log intervals, and get reports via natural language.108612MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/souravpn/toggl-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server