Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"toggl": {
"env": {
"TOGGL_API_TOKEN": "your_token_here"
},
"command": "/path/from/which/toggl-mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that gives Claude access to your Toggl Track time tracking data.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'toggl-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked toggl-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / productivity
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
An autonomous agent that conducts deep research on any data using any LLM providers
🌊 The leading agent orchestration platform for Claude. Deploy intelligent multi-agent swarms, coordinate autonomous workflows, and build conversational AI systems. Features enterprise-grade architecture, distributed swarm intelligence, RAG integration, and native Claude Code / Codex Integration
MCP Security Weekly
Get CVE alerts and security updates for io.github.souravpn/toggl-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that gives Claude access to your Toggl Track time tracking data.
Ask Claude things like:
| Tool | What it does |
|---|---|
get_current_timer | Shows the currently running time entry |
get_recent_entries | Time entries for the past N days (default 7) |
get_projects | Lists all your projects |
get_summary | Total time by project for a date range |
start_timer | Starts a new time entry |
stop_timer | Stops the current timer |
get_profile | Your Toggl profile and workspaces |
npm install -g toggl-mcp
Find the installed path:
which toggl-mcp
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.
What am I currently tracking in Toggl?
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 project
Start tracking:
Start a Toggl timer for "reviewing PRs" on my Engineering project
Stop and summarize:
Stop my timer and tell me how long I worked
Productivity analysis:
How much time did I track last week vs the week before?
Which project took the most time?
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.js
toggl-mcp/
├── src/
│ ├── index.ts # MCP server + tool definitions
│ └── toggl.ts # Toggl API v9 client + formatters
├── package.json
├── tsconfig.json
└── README.md
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.
PRs welcome. Ideas for extension:
MIT
Built with the MCP TypeScript SDK and the Toggl Track API v9.