Connects Claude to your WakaTime coding activity data through four straightforward tools: pull daily summaries of your programming time, get aggregate stats across projects and languages, fetch durations for specific dates, and retrieve recent commits by project. Runs as a streamable HTTP service through the Pipeworx gateway, which means no local setup or API key juggling in your MCP config. You can call tools directly or use the ask_pipeworx wrapper to query your coding stats in plain English. Useful when you want Claude to analyze your productivity patterns, generate reports on how you've spent dev time, or answer questions about project activity without leaving your editor.
WakaTime MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
summaries | Daily summaries. |
stats | Aggregate stats. |
durations | Durations for a date. |
commits | Recent commits for a project. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"wakatime": {
"url": "https://gateway.pipeworx.io/wakatime/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Wakatime data" })
The gateway picks the right tool and fills the arguments automatically.
MIT