Connects Claude to Code::Stats public profiles, the platform developers use to track coding activity and XP across languages and machines. You get two tools: pull a user's full profile with total and per-language XP breakdowns, or grab their recent coding activity from roughly the last 12 hours. Useful when you want Claude to analyze someone's coding patterns, compare language usage, or pull stats for portfolios and dashboards. Runs through Pipeworx's streamable HTTP gateway, so no local setup. You can call tools directly or use ask_pipeworx to query in plain English and let it route automatically.
Code::Stats MCP — public user XP / activity.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
user | Public profile — total XP, per-language XP, per-machine XP. |
recent | Recent coding activity (~last 12 hours) for a user. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"codestats": {
"url": "https://gateway.pipeworx.io/codestats/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 Codestats data" })
The gateway picks the right tool and fills the arguments automatically.
MIT