GitHub repo maintainability verdicts—maintained, slowing, at-risk, abandoned—via MCP.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.
💡 Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A maintainability verdict, not another dashboard.
GitHub Repo Health Check is an MCP server that answers the one question your dependency list can't: is this repo still maintained, or am I building on sand? Last-commit date lies. Star count lies. One signal isn't a verdict. So it returns a four-way read — Actively maintained, Slowing, At-risk, or Likely abandoned — synthesized across four dimensions (activity, issues, PRs, contributors), backed by the transparent, inspectable thresholds that produced it. Point it at any owner/name (or GitHub URL) and your agent gets a verdict it can act on, plus the raw numbers so it can see exactly why. Same repo state + config → the same verdict, every time.
It runs as a Standby Actor on the Apify platform — always warm, reachable over the Streamable HTTP transport at the /mcp path, with API access, scheduling, and monitoring included.
Two repos, two very different verdicts — then a drill-down into the metrics behind them, all over MCP:

If you've ever asked "is this repo abandoned?" or run a GitHub repo health check by hand, this server does it programmatically at any scale.
Most GitHub tools hand an agent raw API access and leave the judgment to the model — inconsistent, hand-rolled heuristics on every call. This server does the synthesis for you.
The differentiator is judgment, not raw access: every verdict ships alongside the pinned thresholds and raw metrics that produced it, so the agent (and you) can audit the reasoning. Same repo state + same config always yields the same verdict.
One GitHub fetch per repository is cached and shared across all five tools. Drilling from the headline verdict into a specific dimension costs no extra upstream calls.
https://<your-standby-url>/mcp) using the Streamable HTTP transport.get_repo_health with a repo argument ("owner/name" or any https://github.com/owner/name URL) to get the headline verdict.get_activity_metrics, get_issue_health, get_pr_health, or get_contributor_insights when you need detail beyond the headline. All five tools read from the same cached payload.All tools take a single repo argument — either "owner/name" or any https://github.com/owner/name[/...] URL (case-insensitive).
get_repo_health — headline verdictReturns the overall verdict, a per-dimension breakdown, and a rationale string explaining the worst dimension.
get_activity_metrics — commit cadence and momentumCommit volumes over trailing windows, release frequency, and a momentum trend.
momentumTrend is accelerating / steady / declining, derived from the 30-day commit rate vs the 90-day rate. Repos that tag rather than cutting GitHub Releases will show releaseCount365d: 0 and lastReleaseDaysAgo: null — this does not by itself degrade the verdict.
get_issue_health — responsiveness and backlog hygieneHow quickly maintainers respond to issues and how much of the backlog has gone stale.
An issue is stale if untouched for more than 90 days. Medians are null when no qualifying events exist in the analysis window — absence is not the same as zero.
get_pr_health — PR throughput and queue ageHow effectively the project merges or closes contributions, and how old the oldest open PR is.
mergeRate excludes still-open PRs from the denominator. It is null when no PRs have been decided in the analysis window.
get_contributor_insights — concentration and bus-factor riskHow many contributors the project has and whether commit activity is dangerously concentrated.
busFactorFlag is true when the top contributor owns more than 50% of commits, or the top two together own more than 80%. totalContributors is the repository's all-time contributor count (sourced from GitHub's stable /contributors list endpoint) — it is not a 90-day-active count.
Verdicts come from pinned, transparent thresholds — same repo state plus same config always yields the same verdict.
| Dimension | Healthy | Moderate | At-Risk | Notes |
|---|---|---|---|---|
| Activity | last commit ≤ 30d | 30–180d | 180–365d | Likely abandoned if > 365d |
| Issues | median first response ≤ 7d and staleOpenRatio ≤ 0.40 | ≤ 30d and ≤ 0.60 | otherwise | null median → judged on staleOpenRatio alone |
| Pull requests | mergeRate ≥ 0.60 and oldestOpenPr ≤ 30d | mergeRate ≥ 0.30 or oldestOpenPr ≤ 90d | otherwise | null mergeRate → judged on oldestOpenPr alone |
| Contributors | totalContributors ≥ 3 and not bus-factor | 1–2 contributors, or ≥ 3 with bus-factor | 0 contributors | solo active maintainer → at most Moderate |
Overall verdict is activity-dominant, evaluated top-down (first match wins):
Likely abandoned (no commits in > 365 days).At-Risk, or any two of {issues, PRs, contributors} are At-Risk.Healthy and no dimension is At-Risk.Moderate, or Healthy activity with one At-Risk dimension).The server boots with no input required (a Standby constraint — all fields are optional in the schema so the container never crash-loops on startup). In practice, you must provide a GitHub token for the Actor to return verdicts rather than rate-limit errors.
| Field | Type | Default | Description |
|---|---|---|---|
githubToken | string (secret) | — | Effectively required. GitHub's GraphQL API (this Actor's primary data source) rejects unauthenticated requests, and on Apify's shared IPs the anonymous REST quota (~60 req/hour per IP) is typically already exhausted by other traffic. A token gives 5,000 req/hour and enables private-repo analysis. |
cacheTtlMinutes | integer | 20 | How long a repo's fetched payload is reused before refetching. Lower = fresher data; higher = fewer GitHub API calls. |
analysisWindowDays | integer | 90 | Trailing window (30–365 days) over which issue and PR activity is measured. |
GitHub token setup. A classic token with no scopes is sufficient for public repositories. A fine-grained token scoped to specific repos works for private-repo analysis. For Standby deployments the recommended approach is to set a
GITHUB_TOKENenvironment variable on the Actor (stored as a secret) rather than pasting the token into the input field — it persists across restarts. Both paths work; both are stored as secrets and never exposed in logs.
No reviews yet — be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/github-repo-intelligence-mcp)<a href="https://allmcps.com/mcp/github-repo-intelligence-mcp"><img src="https://allmcps.com/api/badge/github-repo-intelligence-mcp?style=directory" alt="Github Repo Intelligence MCP on AllMCPs" /></a>