leaders
Pack: wakatime · Endpoint: https://gateway.pipeworx.io/wakatime/mcp
Fetch WakaTime’s public coding leaderboard; optionally filter by language or country_code and paginate; returns ranked users with display names and weekly coding totals.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
language | string | no | |
country_code | string | no | |
page | number | no |
Example call
Arguments
{
"language": "python",
"country_code": "US"
}
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":"leaders","arguments":{"language":"python","country_code":"US"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('leaders', {
"language": "python",
"country_code": "US"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Public leaderboard data 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.