Free MCP server: compute a GitHub repo maintenance/abandonment health score from live data.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A free MCP (Model Context Protocol) server that computes a GitHub repo maintenance/abandonment health score from live GitHub data: is a repo actively maintained, slowing down, likely abandoned, or archived? No API key, no payment, no rate-limit games β just an MCP tool any MCP client can call.
This is the open funnel twin of a paid, x402-gated HTTP API:
x402-repohealth-poc.theliminalguy.workers.dev
β GET /repo-health/:owner/:repo, $0.01 USDC on Base per call via the
x402 payment protocol, for production/high-volume or
non-MCP (plain HTTP) / agent-automated use. Same scoring logic, same
output, just billed per call instead of free-via-MCP.
Agents that pick dependencies, tools, or libraries need to know whether a repo is safe to depend on β actively maintained vs. slowing down vs. effectively dead β and GitHub's own API only gives raw signals (commits, issues, releases), not the decision computed from them. This MCP server is the free/local half of filling that gap β try it for nothing via MCP; reach for the paid HTTP endpoint when you need it at volume or outside an MCP client.
One tool, check_repo_health, takes a GitHub owner + repo and computes
a 0-100 health score across four weighted dimensions (commit recency,
commit activity, issue/PR responsiveness, release cadence, each 0-25
points), plus a verdict:
archived β GitHub's own archived flag is true (overrides the score)actively maintained β score >= 75slowing down β score 45-74likely abandoned β score < 45The response includes the full score breakdown, computed metrics (days
since last commit, commits in last 90 days, issue close ratio, etc.), and a
human-readable reasoning array built from the actual numbers β nothing is
hardcoded per-repo, it's fetched from GitHub's real public REST API and
scored at call time.
Or add it to an MCP client config (e.g. Claude Desktop's
claude_desktop_config.json):
check_repo_healthInput:
Output (MCP tool text content, JSON-stringified):
| Dimension | Points | Logic |
|---|---|---|
| Commit recency | 0-25 | Days since last commit: <=14d->25, <=30d->21, <=90d->15, <=180d->9, <=365d->4, else 0 |
| Commit activity | 0-25 | Commits in trailing 90 days: 0->0, 1-2->6, 3-9->13, 10-29->20, 30+->25 |
| Issue/PR responsiveness | 0-25 | Of issues/PRs updated in the last 90 days: closed-ratio >=0.6 & median close <=14d->25, >=0.4->17, >=0.15->9, else->3. No recent activity -> neutral 14 |
| Release cadence | 0-25 | Days since latest tagged release: <=180d->25, <=365d->17, <=730d->9, else 3. No releases ever -> neutral 12 |
archived: true from GitHub overrides the score-derived verdict entirely β
an archived repo is confirmed dead by the maintainer's own action, not
merely "likely abandoned."
check_repo_health call costs ~3-4 GitHub requests. Fine for
free/local/low-volume MCP use; the paid Worker adds a GITHUB_TOKEN
(5,000 req/hr) server-side.src/github.ts, src/score.ts, src/health.ts, and src/types.ts are
the same GitHub-fetch + scoring logic as the paid Worker β this MCP server
is a thin src/index.ts wrapper around getRepoHealth().
Use GET /repo-health/:owner/:repo
on the paid Worker instead of this MCP server when:
x402-fetch / x402-axios) and
can pay $0.01 USDC on Base per request.Both routes call the exact same scoring function β output is identical.
MIT
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/x402-repohealth-mcp)<a href="https://allmcps.com/mcp/x402-repohealth-mcp"><img src="https://allmcps.com/api/badge/x402-repohealth-mcp?style=directory" alt="X402 Repohealth MCP on AllMCPs" /></a>