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.
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
- 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