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. - ⏱️ Start/stop timers - 📊 View current timer - 📈 Get today's time entries - 🗂️ List projects - 🗑️ Delete time entries Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claudedesktopconfig.json): 1. Go to Tog
Add this skill
npx mdskills install louis030195/toggl-mcpWell-documented MCP server with useful Toggl time tracking tools and clear setup instructions
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
Install via CLI
npx mdskills install louis030195/toggl-mcpLouis030195/toggl MCP is a free, open-source AI agent skill. 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. - ⏱️ Start/stop timers - 📊 View current timer - 📈 Get today's time entries - 🗂️ List projects - 🗑️ Delete time entries Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claudedesktopconfig.json): 1. Go to Tog
Install Louis030195/toggl MCP with a single command:
npx mdskills install louis030195/toggl-mcpThis downloads the skill files into your project and your AI agent picks them up automatically.
Louis030195/toggl MCP works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Gemini Cli, Amp, Roo Code, Goose. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.