commits
Pack: wakatime · Endpoint: https://gateway.pipeworx.io/wakatime/mcp
List the commits WakaTime has recorded for one project belonging to a WakaTime user, given user_id (or “current”) and the project name, with optional author, branch, and page. Returns each commit hash, message, author, branch, timestamps, and the coding time WakaTime attributes to it. Answers what has been committed to a project tracked by WakaTime and how much editor time went into it.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
user_id | string | yes | |
project | string | yes | |
author | string | no | |
branch | string | no | |
page | number | no |
Example call
Arguments
{
"user_id": "wakatime_user_123",
"project": "my-project"
}
curl
curl -X POST https://gateway.pipeworx.io/wakatime/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"commits","arguments":{"user_id":"wakatime_user_123","project":"my-project"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('commits', {
"user_id": "wakatime_user_123",
"project": "my-project"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Recent commits for a project from WakaTime API"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"wakatime": {
"url": "https://gateway.pipeworx.io/wakatime/mcp"
}
}
}
See Getting Started for client-specific install steps.