GitHub Health Monitor MCP
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
GitHub Health Monitor MCP
π 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
Error: API rate limit exceeded
- Solution: Set
GITHUB_TOKENenvironment variable for 5,000 req/hour limit (vs 60 for unauthenticated) - Token: Generate at github.com/settings/tokens with
reposcope
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!
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.