
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 — coding-time stats by user (langs, projects, editors, OSes). Free API key.
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
PLATFORM_WAKATIME_KEY. BYO: ?_apiKey=… (use your own API key — WakaTime data is per-user).current_user() — authenticated user profileuser(user_id) — public profile (use current for self)summaries(user_id, start, end, project?, branches?, timeout?, writes_only?, timezone?) — daily summariesstats(user_id, range, project?, timeout?, writes_only?) — aggregate stats (range = last_7_days|last_30_days|last_6_months|last_year|all_time)durations(user_id, date, project?, branches?, timeout?, writes_only?, timezone?, slice_by?) — durations for a dateheartbeats(user_id, date) — raw heartbeats for a date (full visibility into edits)goals(user_id, page?) — user's goalsprojects(user_id, q?) — user's projectsleaders(language?, country_code?, page?) — public leaderboardcommits(user_id, project, author?, branch?, page?) — recent commits (if project linked to git)editors() — public editor statsmeta() — current API metahttps://wakatime.com/api/v1
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"wakatime": {
"url": "https://gateway.pipeworx.io/wakatime/mcp"
}
}
}
tools/list at https://gateway.pipeworx.io/wakatime/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1476+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Wakatime data" })
The gateway picks the right tool and fills the arguments automatically.
MIT