Sign In

@gitleaderboard/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gitleaderboard/mcp-server

MCP server for Git Leaderboard — query GitHub contribution rankings, user stats, achievements, and streaks from your AI assistant.

Source
npmnpm
Version
0.1.2
Version published
Maintainers
1
Created
Source

@gitleaderboard/mcp-server

Official MCP server for Git Leaderboard.

Use it from Claude, Cursor, VS Code, Windsurf, and other MCP-compatible clients to query public GitHub leaderboard data directly from your AI assistant.

What You Can Ask

  • Global rankings by contributions, commits, issues, pull requests, reviews, or impact score
  • GitHub user profiles with streaks, achievements, leagues, and global rank
  • Username search on Git Leaderboard
  • Side-by-side comparison between two GitHub users

Available Tools

ToolDescription
get_leaderboardReturns global rankings by contributions, commits, issues, PRs, reviews, or impact score. Supports year and month filters.
get_user_profileReturns a user's full Git Leaderboard profile, including stats, achievements, streaks, league career, and rank.
search_usersSearches Git Leaderboard users by GitHub username.
compare_usersCompares two GitHub users side by side across rankings, achievements, and streaks.

Quick Start

Run the server through npx:

npx -y @gitleaderboard/mcp-server

The package exposes the CLI entrypoint mcp-git-leaderboard, but in most MCP clients npx -y @gitleaderboard/mcp-server is the simplest setup.

Client Setup

Claude Desktop

Add this to claude_desktop_config.json:

{
  "mcpServers": {
    "git-leaderboard": {
      "command": "npx",
      "args": ["-y", "@gitleaderboard/mcp-server"]
    }
  }
}

Claude Code

claude mcp add git-leaderboard -- npx -y @gitleaderboard/mcp-server

VS Code

Add this to .vscode/settings.json:

{
  "mcp": {
    "servers": {
      "git-leaderboard": {
        "command": "npx",
        "args": ["-y", "@gitleaderboard/mcp-server"]
      }
    }
  }
}

Cursor

Add this to your MCP settings:

{
  "mcpServers": {
    "git-leaderboard": {
      "command": "npx",
      "args": ["-y", "@gitleaderboard/mcp-server"]
    }
  }
}

Windsurf

Add this to your MCP settings:

{
  "mcpServers": {
    "git-leaderboard": {
      "command": "npx",
      "args": ["-y", "@gitleaderboard/mcp-server"]
    }
  }
}

Example Prompts

  • "Show me the top GitHub contributors by impact score"
  • "Who has the most commits this month?"
  • "Look up hrvoje0099 on Git Leaderboard"
  • "Compare two GitHub users on Git Leaderboard"
  • "Search for a GitHub username on Git Leaderboard"

Configuration

By default, the server queries the production Git Leaderboard backend.

Optional environment variables:

  • CONVEX_URL: Override the default backend URL

How It Works

This server uses Git Leaderboard's public backend to expose read-only MCP tools. No API key is required for normal usage.

License

MIT

Keywords

mcp

FAQs

Package last updated on 31 Mar 2026

Related posts