npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@hicho-lge/gerrit-mcp

v0.0.1

Published

Gerrit Code Review system을 위한 Model Context Protocol (MCP) 서버 - 23개 도구로 변경사항, 프로젝트, 계정 관리 기능 제공

Readme

🚀 Gerrit MCP Server

npm version License: MIT Node.js Version

Gerrit Code Review 시스템과 상호작용하기 위한 Model Context Protocol (MCP) 서버입니다.

VS Code에서 Gerrit을 직접 제어할 수 있습니다!

✨ 주요 기능 (23개 도구)

🔗 연결 관리

  • gerrit_connect - Gerrit 서버 연결
  • gerrit_test_connection - 연결 상태 테스트

📝 변경사항 관리 (7개)

  • gerrit_query_changes - 변경사항 검색
  • gerrit_get_change - 변경사항 상세 조회
  • gerrit_review_change - 리뷰 작성
  • gerrit_abandon_change - 변경사항 포기
  • gerrit_get_change_comments - 댓글 조회
  • gerrit_reply_to_inline_comment - 인라인 답글
  • gerrit_get_change_fetch_info - Git fetch 정보

📁 프로젝트 관리 (8개)

  • gerrit_list_projects - 프로젝트 목록
  • gerrit_get_project - 프로젝트 정보
  • gerrit_get_project_description - 프로젝트 설명
  • gerrit_get_project_head - HEAD 브랜치
  • gerrit_list_project_branches - 브랜치 목록
  • gerrit_list_project_tags - 태그 목록
  • gerrit_list_access_rights - 접근 권한
  • gerrit_get_project_clone_info - 클론 정보

👥 계정 관리 (2개)

  • gerrit_query_accounts - 사용자 검색
  • gerrit_get_account - 계정 정보

📄 파일 작업 (2개)

  • gerrit_list_files - 파일 목록
  • gerrit_get_content - 파일 내용

🔍 커밋 작업 (2개)

  • gerrit_get_commit - 커밋 정보
  • gerrit_get_included_in - 포함된 브랜치/태그

⚙️ VS Code 연동 설정

VS Code의 MCP 설정 파일에 다음을 추가하세요:

{
  "mcpServers": {
    "gerrit-review": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "gerrit-mcp@latest"
      ],
      "env": {
        "GERRIT_BASE_URL": "https://your-gerrit-server.com",
        "GERRIT_USERNAME": "your-username",
        "GERRIT_HTTP_CREDENTIALS": "your-http-password"
      },
      "description": "Gerrit Code Review MCP Server"
    }
  }
}

환경변수 설정

export GERRIT_BASE_URL="https://your-gerrit-server.com"
export GERRIT_USERNAME="your-username"
export GERRIT_HTTP_CREDENTIALS="your-http-password"

⭐ 검증 완료

Gerrit 3.1.8에서 테스트 완료23개 도구 모두 정상 동작 확인실제 운영 환경 데이터 처리 검증프로덕션 준비 완료

🌐 호환성

  • Gerrit: 3.1.8+
  • Node.js: 16+
  • MCP SDK: 0.5.0+

📝 라이선스

MIT License - 자세한 내용은 LICENSE 파일을 참조하세요.