Skip to main content

Advanced GitHub MCP server — repo analysis, PR management, code review, CI/CD monitoring

Project description

🚀 mcp-github-advanced

PyPI License: MIT Python 3.10+ MCP

Advanced GitHub MCP server — repo analysis, PR management, automated code review, CI/CD monitoring via GitHub REST v3 + GraphQL v4 API.

Built for AI assistants and LangChain/LangGraph agents using the Model Context Protocol.


✨ Features

Category Tools Description
📁 Repo list_user_repos, get_repo_info, get_file_content, list_repo_files, search_code User profiles, repository metadata, file contents, directory tree, code search
📝 Commit list_commits, get_commit_diff, get_contributor_stats Commit history, diffs, contributor statistics
🔀 PR list_pull_requests, get_pr_diff, create_pr_review PR management and AI-powered code reviews
🐛 Issue list_issues, create_issue Issue tracking and creation
⚙️ CI/CD get_workflow_runs, get_workflow_logs GitHub Actions monitoring and log analysis

15 tools in total, all with:

  • 🔒 Versioned API headers (X-GitHub-Api-Version: 2022-11-28)
  • ⚡ Redis caching with intelligent TTL strategy
  • 🔄 Automatic retry with exponential backoff
  • 📏 Output chunking for LLM token limits (8192 tokens)
  • 🔑 PAT + OAuth 2.0 authentication

AI HR Analysis Platform:

  • 🤖 10+1 Parallel AI Agent system (LangGraph Fan-out/Fan-in)
  • 📊 Real-time SSE streaming dashboard
  • 📄 PDF DNA Report export
  • 💬 Interactive Q&A about analysis results
  • 🧠 Persistent session memory for historical comparison

📦 Installation

Package Kurulumu (Kullanıcılar İçin)

pip install mcp-github-advanced

Veya MCP sunucuları için önerildiği gibi uvx kullanarak doğrudan çalıştırabilirsiniz:

uvx mcp-github-advanced

Kaynak Koddan Kurulum (Geliştiriciler İçin)

Projeyi kendi bilgisayarınıza klonlayıp o şekilde kullanmak (veya geliştirmek) isterseniz:

git clone https://github.com/iamseyhmus7/GitHub-Autopilot.git
cd GitHub-Autopilot
pip install -e ".[dev]"

⚙️ Configuration

1. Environment Variables

Copy .env.example to .env and fill in your credentials:

cp .env.example .env
# GitHub Auth (at least one required)
GITHUB_TOKEN=ghp_xxxxxxxxxxxxxxxxxxxx      # Personal Access Token
GITHUB_CLIENT_ID=Ov23xxxxxxxxxxxxx         # OAuth App (optional)
GITHUB_CLIENT_SECRET=xxxxxxxxxxxxxxxx      # OAuth App (optional)

# Redis (optional — disables caching if unavailable)
REDIS_URL=redis://localhost:6379/0

# Server
MCP_SERVER_NAME=mcp-github-advanced
LOG_LEVEL=INFO

# LLM
GOOGLE_API_KEY=AIzaSyXXXXXXXXXXXXXXXXXXX

2. GitHub Token Scopes

For full functionality, your PAT needs these scopes:

  • repo — Access private repositories
  • read:user — Read user profile

🎮 Kullanım (AI Asistanlarına Ekleme)

Bu server, standart bir stdio altyapısı kullanarak JSON-RPC 2.0 mimarisini destekler. AI istemcileriniz için (örn: Claude Desktop, Cursor, Antigravity) konfigürasyon dosyasına (claude_desktop_config.json veya IDE mcp_config.json) kullanım yönteminize göre aşağıdaki bloklardan birini eklemeniz yeterlidir:

1. PyPI Üzerinden Pip Install Sonrası:

{
  "mcpServers": {
    "mcp-github-advanced": {
      "command": "mcp-github-advanced",
      "env": {"GITHUB_TOKEN": "ghp_..."}
    }
  }
}

2. UVX ile (Sıfır Kurulum, Anında Çalıştırma):

{
  "mcpServers": {
    "mcp-github-advanced": {
      "command": "uvx",
      "args": ["mcp-github-advanced"],
      "env": {"GITHUB_TOKEN": "ghp_..."}
    }
  }
}

3. GitHub Kaynak Kodundan Çalıştırma:

{
  "mcpServers": {
    "mcp-github-advanced": {
      "command": "python",
      "args": ["-m", "mcp_github_advanced"],
      "env": {"GITHUB_TOKEN": "ghp_..."}
    }
  }
}

💡 İpucu: Kurulumu yaptıktan sonra asistanınızın "iamseyhmus7/GitHub-Autopilot reposunun bilgilerini getir" gibi komutları anlayabildiğini görebilirsiniz!


🤖 AI HR Assistant (10+1 Parallel Multi-Agent System)

Bu repo sadece bir MCP sunucusu olmakla kalmaz, aynı zamanda bu sunucuyu kullanan gelişmiş bir İK (HR) Aday İnceleme Ajanı barındırır. src/main.py ve src/api/main.py üzerinden çalışan bu sistem, bir GitHub profilini 10+1 farklı sanal uzman ile analiz eder:

  1. Agent 0 (Smart Profiler): repo_name girilmediğinde adayın tüm profilini tarayıp en kaliteli projesini seçer.
  2. Repo Explorer: Proje haritasını çıkarır.
  3. Dependency Analyst: Kullanılan teknolojileri ve kütüphaneleri bulur.
  4. Architecture Reviewer: Temiz mimari (Clean Architecture/MVC vb.) kullanımını inceler.
  5. Code Quality Inspector: Kod okunabilirliğini ve SOLID prensiplerini denetler.
  6. Security Agent: Hardcoded şifreleri veya güvenlik zaaflarını tarar.
  7. Git Historian: Commit geçmişini inceleyip projenin kopyala-yapıştır olup olmadığını teyit eder.
  8. DevOps Evaluator: CI/CD süreçlerini ve Unit Test'leri kontrol eder.
  9. PR Manager: Takım çalışması, Issue ve Branch kullanımını değerlendirir.
  10. History Analyzer: Adayın geçmiş analizleriyle karşılaştırma yapar (Kalıcı Bellek).
  11. HR Synthesizer: Tüm bu teknik raporları harmanlayıp, teknik olmayan İK profesyonelleri için "Puanlı Aday Skor Kartı" ve mülakat soruları çıkarır.
  12. Q&A Agent: Tamamlanan rapor hakkında interaktif soru-cevap yapar.

Performans & Optimizasyon:

  • LangGraph kullanılarak paralel fan-out/fan-in mimarisi ile inşa edilmiştir.
  • 7 ajan eş zamanlı çalışır (dependency_analyst sonrası paralel dal).
  • Her ajan sadece uzmanlık alanına giren MCP araçlarına filtreli şekilde erişir (Context Optimizasyonu).
  • 90s LLM / 45s Tool timeout ile donma riski ortadan kaldırılmıştır.
  • Global Tool Semaphore ile paralel araç çağrıları arasındaki race condition önlenir.
  • Global bir AIO Sqlite Checkpointer kullanılarak, farklı mülakat oturumları (thread_id) kalıcı hafızada tutulur.
  • Tek bir Github profil analizi ortalama 15 API İsteği ve 71.000 Token maliyeti ile tamamlanır.

Çalıştırmak için (CLI):

python src/main.py

Web Arayüzü ile çalıştırmak için:

# Backend
uvicorn src.api.main:app --reload --port 8000

# Frontend (ayrı terminal)
cd frontend && npm run dev

🌐 Web Dashboard

Projede görsel bir Premium İK Dashboard mevcuttur:

  • Dark Theme ile glassmorphism tasarım
  • 10 Ajan Kartı — canlı durum takibi (Beklemede / Analiz Ediliyor / Tamamlandı)
  • SSE Canlı Akış — React EventSource ile FastAPI backend'e bağlantı
  • Teknik Skor Kartları — Dairesel ilerleme barları ile puan gösterimi
  • Markdown Rapor Görüntüleyici — Nihai değerlendirme raporu
  • PDF İndirme — Tek tıkla DNA Raporu PDF olarak dışa aktarım
  • Q&A Chat — Rapor hakkında interaktif soru-cevap

🛠️ Usage Examples

Once connected to an MCP client, you can use natural language:

"Analyze the repository owner/repo — show me stars, language, and recent commits."

"List open pull requests in owner/repo and review PR #42."

"Check the latest CI/CD runs for owner/repo and show me failed job logs."

"Search for TODO comments in owner/repo."

"Create an issue titled 'Fix login bug' with label 'bug' in owner/repo."


🏗️ Architecture

┌──────────────────────────────────────────┐
│              server.py                    │
│         15 MCP Tools (@mcp.tool)         │
│         FastMCP decorator-based          │
└──────────────┬───────────────────────────┘
               │
    ┌──────────┴──────────┐
    ▼                     ▼
┌───────────┐    ┌─────────────────┐
│ github.py │    │    auth.py       │
│ REST + GQL│    │ OAuth + PAT     │
│ Rate limit│    │ Token mgmt      │
└─────┬─────┘    └─────────────────┘
      │
      ▼
┌───────────────────────────────────┐
│          cache.py                  │
│  Redis — TTL-based caching        │
│  Graceful degradation             │
└───────────────────────────────────┘

Multi-Agent Analysis Flow (Parallel)

START ──▶ repo_explorer ──▶ dependency_analyst ──┬──▶ architecture_reviewer ──┐
                                                  ├──▶ code_quality ──────────┤
                                                  ├──▶ security ─────────────┤
                                                  ├──▶ git_historian ─────────┤
                                                  ├──▶ devops ────────────────┤
                                                  ├──▶ pr_manager ────────────┤
                                                  └──▶ history_analyzer ──────┘
                                                                              │
                                                                              ▼
                                                                       hr_synthesizer ──▶ END

🧪 Testing

All tests use respx mocks — no real GitHub API calls:

# Install dev dependencies
pip install -e ".[dev]"

# Run tests
pytest

# Run with coverage
pytest --cov=mcp_github_advanced

# Lint
ruff check src/ tests/

🌍 Deployment

PyPI

pip install mcp-github-advanced

---## 📝 License

MIT License — see LICENSE for details.


🤝 Contributing

  1. Fork the repository
  2. Create a feature branch: git checkout -b feat/amazing-feature
  3. Commit: git commit -m 'feat: add amazing feature'
  4. Push: git push origin feat/amazing-feature
  5. Open a Pull Request

Follow the commit conventions defined in AGENTS.md.


👤 Author

Şeyhmus OK@iamseyhmus7

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mcp_github_advanced-0.2.1.tar.gz (53.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mcp_github_advanced-0.2.1-py3-none-any.whl (27.6 kB view details)

Uploaded Python 3

File details

Details for the file mcp_github_advanced-0.2.1.tar.gz.

File metadata

  • Download URL: mcp_github_advanced-0.2.1.tar.gz
  • Upload date:
  • Size: 53.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for mcp_github_advanced-0.2.1.tar.gz
Algorithm Hash digest
SHA256 74bf09674fd12857e16b26bd3643da802e49525d84df7bdd239b09b532492e01
MD5 658c15c47456d433da16cb02e080f7ba
BLAKE2b-256 4dc207d46cf40e74c68875b5e3742679b8b06a3a5ab49f4177588e71eee0bffe

See more details on using hashes here.

File details

Details for the file mcp_github_advanced-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for mcp_github_advanced-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 af5f15d284524d33922da1a3ed4f6b7d9e2e8a17883c16205c3310546f5c4763
MD5 c7cdd1c7d8e3844b7fdc802cf53936a7
BLAKE2b-256 df224e67dbb067bee391f254c6dad1f0e92f7c954365f33f62031a38be3fe59d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page