loading…
Search for a command to run...
loading…
Time tracking integration with Toggl Track. Start/stop timers, manage time entries, track project time, and get today's summary. Perfect for productivity tracki
Time tracking integration with Toggl Track. Start/stop timers, manage time entries, track project time, and get today's summary. Perfect for productivity tracking and billing workflows.
Dead simple MCP (Model Context Protocol) server for Toggl time tracking. Control your Toggl timer directly from Claude, ChatGPT, or any LLM that supports MCP.
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"toggl": {
"command": "npx",
"args": ["-y", "@louis030195/toggl-mcp"],
"env": {
"TOGGL_API_KEY": "your-toggl-api-key"
}
}
}
}
# Install globally in user scope with API key
claude mcp add -s user toggl npx -e TOGGL_API_KEY=your-toggl-api-key -- -y @louis030195/toggl-mcp
Once configured, you can use natural language to control Toggl:
toggl_startStart a new timer with a description and optional project.
toggl_stopStop the currently running timer.
toggl_currentGet information about the currently running timer.
toggl_todayGet all time entries for today with total duration.
toggl_projectsList all projects in your workspace.
toggl_deleteDelete a time entry by its ID.
toggl_weeklyGet weekly time tracking summary with total hours and breakdowns.
week_offset (optional, number)0 = current week-1 = last week-2 = two weeks ago, etc.Returns:
toggl_last_weekConvenience function to get last week's time tracking summary (equivalent to toggl_weekly with week_offset: -1).
# Clone the repo
git clone https://github.com/louis030195/toggl-mcp.git
cd toggl-mcp
# Install dependencies
npm install
# Build
npm run build
# Run locally
TOGGL_API_KEY=your-api-key npm start
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"louis030195-toggl-mcp": {
"command": "npx",
"args": []
}
}
}