🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
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

Official MCP server for Git Leaderboard rankings, profiles, streaks, and user comparisons.

latest
Source
npmnpm
Version
0.1.8
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

npx -y -p @gitleaderboard/mcp-server mcp-server

Client Setup

Claude Desktop

Add this to claude_desktop_config.json:

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

Claude Code

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

VS Code

Add this to .vscode/settings.json:

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

Cursor

Add this to your MCP settings:

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

Windsurf

Add this to your MCP settings:

{
  "mcpServers": {
    "git-leaderboard": {
      "command": "npx",
      "args": ["-y", "-p", "@gitleaderboard/mcp-server", "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 03 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts