GitHub Health Monitor
БесплатноНе проверенMonitors and analyzes GitHub repository health by detecting stale branches, old pull requests, unresponsive issues, and security alerts. Integrates with MCP-com
Описание
Monitors and analyzes GitHub repository health by detecting stale branches, old pull requests, unresponsive issues, and security alerts. Integrates with MCP-compatible AI assistants and automation tools.
README
TypeScript Node.js MCP SDK License npm
🚀 Monitor, analyze, and improve your GitHub repository health with intelligent MCP tooling.
GitHub Health Monitor is a powerful Model Context Protocol (MCP) server that continuously tracks critical repository health metrics. Get instant insights into stale branches, aging pull requests, inactive issues, and security vulnerabilities—all through standardized MCP interfaces that integrate seamlessly with AI assistants and automation tools.
📊 Key Features
| Feature | Description | Default Threshold |
|---|---|---|
| 🌿 Stale Branch Detection | Identify branches untouched for extended periods | >30 days |
| 🔄 Old PR Tracking | Find pull requests awaiting review/merge | >14 days |
| 📋 Unresponsive Issues | Flag issues needing attention | >7 days |
| 🔒 Security Alert Monitoring | Track potential security concerns | Real-time |
| 🎯 MCP Native | Full MCP Resources & Tools integration | — |
| ⚡ Configurable | Customize thresholds and behavior | Flexible |
🚀 Quick Start
Prerequisites
- Node.js 20+
- npm or compatible package manager
- GitHub Personal Access Token (optional but recommended for higher rate limits)
Installation & Setup
# Clone the repository
git clone https://github.com/IN3PIRE/github-health-monitor.git
cd github-health-monitor
# Install dependencies
npm install
# Build the project
npm run build
# Optional: Test the build
npm test
Testing Your Installation
# Run in development mode
npm run dev
# Or start the built version
npm start
🔧 Configuration
Environment Variables
Configure behavior using these environment variables:
| Variable | Description | Default | Example |
|---|---|---|---|
GITHUB_TOKEN |
GitHub PAT for authenticated requests | — | ghp_xxxxxxxxxxxx |
STALE_BRANCH_DAYS |
Days before branch considered stale | 30 |
21 |
OLD_PR_DAYS |
Days before PR considered old | 14 |
7 |
UNRESPONSIVE_ISSUE_DAYS |
Days before issue needs attention | 7 |
3 |
MCP Client Integration
Add to your MCP-compatible client configuration:
{
"mcpServers": {
"github-health": {
"command": "node",
"args": ["/absolute/path/to/github-health-monitor/dist/index.js"],
"env": {
"GITHUB_TOKEN": "${GH_TOKEN}",
"STALE_BRANCH_DAYS": "21"
}
}
}
}
Popular MCP Clients
- Claude Desktop: Add to
claude_desktop_config.json - Cursor: Use MCP settings panel
- Windsurf: Configure via MCP integrations
- Custom Applications: Use MCP SDK directly
See the examples/ directory for ready-to-use configuration templates.
📖 Usage Guide
As an MCP Tool
Trigger comprehensive health checks for any repository:
// Basic repository check
const healthReport = await mcpClient.callTool("check_health", {
owner: "facebook",
repo: "react"
});
// With custom thresholds for this specific check
const strictHealth = await mcpClient.callTool("check_health", {
owner: "vercel",
repo: "next.js",
staleBranchDays: 14,
oldPRDays: 7,
unresponsiveIssueDays: 3
});
Tool Parameters:
owner(string, required): GitHub username or organizationrepo(string, required): Repository namestaleBranchDays(number, optional): Override default stale thresholdoldPRDays(number, optional): Override PR age thresholdunresponsiveIssueDays(number, optional): Override issue timeout
As an MCP Resource
Read the current aggregated health metrics:
// Access latest health snapshot
const metrics = await mcpClient.readResource("health://current");
// Integrate with monitoring dashboards
const healthData = await mcpClient.readResource("health://metrics");
Available Resources:
health://current: Real-time repository health snapshothealth://metrics: Time-series health metricshealth://summary: Condensed health report
Direct API Usage
For programmatic integration without MCP:
# Build the server
npm run build
# Run directly with environment variables
GITHUB_TOKEN=ghp_xxx node dist/index.js
# Use with process managers
pm2 start dist/index.js --name "github-health-monitor"
📈 Example Outputs
Full Health Report
{
"repository": "facebook/react",
"timestamp": "2024-03-20T15:30:00Z",
"staleBranches": [
{
"name": "feature/deprecated-component",
"lastCommit": "2024-01-15T10:30:00Z",
"author": "dev123",
"daysStale": 45,
"url": "https://github.com/facebook/react/tree/feature/deprecated-component"
}
],
"oldPRs": [
{
"number": 26784,
"title": "Add experimental concurrent features",
"author": "core-team",
"createdAt": "2024-02-20T08:15:00Z",
"daysOpen": 28,
"reviewStatus": "changes-requested",
"url": "https://github.com/facebook/react/pull/26784"
}
],
"unresponsiveIssues": [
{
"number": 24563,
"title": "Bug: Suspense fallback shows briefly on fast networks",
"author": "community-member",
"createdAt": "2024-02-10T14:22:00Z",
"lastUpdated": "2024-02-10T14:22:00Z",
"daysSinceUpdate": 39,
"assignee": null,
"labels": ["bug", "needs-triage"],
"url": "https://github.com/facebook/react/issues/24563"
}
],
"securityAlerts": [
{
"severity": "high",
"package": "semver",
"vulnerableVersion": "<7.5.2",
"patchedVersion": "7.5.2",
"description": "Regular Expression Denial of Service (ReDoS)"
}
],
"summary": {
"totalStaleBranches": 3,
"totalOldPRs": 7,
"totalUnresponsiveIssues": 12,
"totalSecurityAlerts": 1,
"healthScore": 72
}
}
Condensed Summary
{
"repository": "vercel/next.js",
"healthScore": 85,
"status": "healthy",
"requiresAttention": {
"staleBranches": 2,
"oldPRs": 3,
"unresponsiveIssues": 5
},
"timestamp": "2024-03-20T15:30:00Z"
}
🎯 Use Cases
For Maintainers & Teams
- Daily Standups: Quick health pulse before meetings
- Release Readiness: Ensure no blockers before shipping
- Cleanup Campaigns: Identify technical debt systematically
- Security Audits: Monitor for new vulnerabilities
- Onboarding: Help new contributors understand repository state
For Automation
- CI/CD Integration: Gate deployments on health thresholds
- Scheduled Reports: Daily/weekly health digests via automation
- ChatOps: Query repository health from Slack/Discord bots
- Dashboards: Feed metrics to Grafana, Datadog, etc.
🔍 Troubleshooting
Common Issues
Rate Limiting
GitHub API rate limit exceeded. Retry after about 60 seconds. Set GITHUB_TOKEN for a higher request limit.
- Solution: Set
GITHUB_TOKENenvironment variable for 5,000 req/hour limit (vs 60 for unauthenticated) - Token: Generate at github.com/settings/tokens with
reposcope - Behavior: Short retry windows are retried with exponential backoff. Longer GitHub reset windows are returned as a clear health-check error with the retry time.
Connection Issues
Error: Failed to connect to MCP server
- Verify Node.js version:
node --version(requires 20+) - Check port availability:
lsof -i :<port> - Review firewall settings
Permission Errors
Error: Resource not accessible by integration
- Ensure token has access to target repository
- Verify repository name spelling
- Check organization access if applicable
Debug Mode
# Enable verbose logging
DEBUG=mcp:* npm run dev
# Or set globally
export DEBUG=mcp:*
node dist/index.js
Getting Help
- Check existing issues
- Review logs with
DEBUG=mcp:* - Verify configuration against examples in
examples/ - Open a new issue with debug logs and reproduction steps
🧪 Testing
# Run full test suite
npm test
# Run with coverage
npm test -- --coverage
# Lint check
npm run lint # if configured
🏗️ Architecture
┌─────────────────┐ ┌──────────────────────┐ ┌─────────────────┐
│ MCP Client │◄────┤ MCP Protocol Layer ├────►│ Health Monitor │
│ (Claude/Cursor) │ │ (SDK Integration) │ │ Server │
└─────────────────┘ └──────────────────────┘ └─────────────────┘
│
▼
┌─────────────────┐ ┌──────────────────────┐ ┌─────────────────┐
│ GitHub API │◄────┤ Octokit Clients │◄────┤ Metrics │
│ (REST/GraphQL)│ │ (REST + GraphQL) │ │ Engine │
└─────────────────┘ └──────────────────────┘ └─────────────────┘
Core Components
- MCP Server: Handles protocol negotiation and tool/resource exposure
- Metrics Engine: Orchestrates data collection and analysis
- GitHub Adapter: Octokit-based API communication layer
- Health Calculator: Scoring and status determination logic
🤝 Contributing Guidelines
We welcome contributions! Please see CONTRIBUTING.md for detailed guidelines.
Quick Contribution Steps
- Star the repo ⭐ (required for PR merging)
- Fork the repository
- Create a feature branch:
git checkout -b feat/your-feature - Make your changes with tests
- Commit with clear messages:
git commit -m "feat: add new metric type" - Push to your fork:
git push origin feat/your-feature - Open a Pull Request with detailed description
⚠️ Important: PRs can only be merged if you have ⭐ starred this repository!
Development Setup
# Fork and clone your fork
git clone https://github.com/YOUR_USERNAME/github-health-monitor.git
cd github-health-monitor
# Install dependencies
npm install
# Start development mode
npm run dev
# Run tests before committing
npm test
📄 License
MIT License - see LICENSE file for details.
Copyright © 2024 IN3PIRE
🌟 Support & Community
- ⭐ Star this repository to show support and unlock PR merging capabilities
- 🐛 Report bugs with detailed reproduction steps
- 💡 Request features via GitHub Discussions
- 💬 Join discussions about roadmap and improvements
Watch for Releases
Click 👀 Watch → Releases only to get notified about new versions and security updates.
Built with ❤️ for the MCP ecosystem.
⭐ Don't forget to star the repo to enable PR merging and show your support!
Additional Information
- Offers Easy Installation: Install via the LobeHub badge or a single
npm installcommand; no complex manual setup required. - Has LICENSE: The repository includes an MIT LICENSE file.
- Includes Prompts: Ready‑to‑use prompts are bundled for easy integration with MCP clients.
- Includes Resources: Example configurations, schemas, and context resources are provided in the
examples/folder.
Установка GitHub Health Monitor
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/IN3PIRE/github-health-monitor-mcpFAQ
GitHub Health Monitor MCP бесплатный?
Да, GitHub Health Monitor MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для GitHub Health Monitor?
Нет, GitHub Health Monitor работает без API-ключей и переменных окружения.
GitHub Health Monitor — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить GitHub Health Monitor в Claude Desktop, Claude Code или Cursor?
Открой GitHub Health Monitor на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare GitHub Health Monitor with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
