Quorum Git Agent
Provides tools for analyzing GitHub repositories, including health scoring, issue triage, delivery risk assessment, and action item creation.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Quorum Git Agentanalyze repository fastapi/fastapi"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Quorum Git Agent
Repository intelligence for engineering teams, available through a visual dashboard, REST API and Model Context Protocol tools.
Quorum inspects a public GitHub repository, calculates a transparent health score, triages open issues, highlights delivery risks and stores every report in SQLite. It works without an LLM key; an MCP-compatible host can use the tools immediately.
What it demonstrates
Python 3.11 and FastAPI service design
GitHub REST API integration with rate-limit handling
SQL persistence with migrations created on startup
MCP tools built with the official Python SDK
deterministic repository scoring and issue triage
responsive dashboard with no frontend build step
pytest, Ruff, Docker and GitHub Actions
Related MCP server: GitHub Health Monitor MCP
Architecture
flowchart LR
UI[Dashboard] --> API[FastAPI REST API]
HOST[MCP host] --> MCP[MCP server]
API --> ENGINE[Analysis engine]
MCP --> ENGINE
ENGINE --> GH[GitHub REST API]
ENGINE --> DB[(SQLite)]Quick start
git clone https://github.com/rom4ik1346/quorum-git-agent.git
cd quorum-git-agent
python -m venv .venv
.\.venv\Scripts\python.exe -m pip install -e ".[dev]"
.\start.ps1Open:
dashboard:
http://127.0.0.1:8010Swagger UI:
http://127.0.0.1:8010/docshealth check:
http://127.0.0.1:8010/api/health
The dashboard starts with a seeded fictional repository report, so the interface is useful before the first external API request.
GitHub token
Public repositories can be analyzed without a token. To increase the API rate
limit, copy .env.example to .env and add a fine-grained token:
GITHUB_TOKEN=github_pat_your_tokenThe token is read only on the server and is never returned to the browser.
MCP server
Run the stdio server:
.\.venv\Scripts\python.exe -m app.mcp_serverExample client configuration:
{
"mcpServers": {
"quorum": {
"command": "C:\\path\\to\\quorum-git-agent\\.venv\\Scripts\\python.exe",
"args": ["-m", "app.mcp_server"],
"cwd": "C:\\path\\to\\quorum-git-agent"
}
}
}Available tools:
analyze_repositorylist_recent_analysesget_repository_briefcreate_action_item
REST examples
Invoke-RestMethod `
-Method Post `
-Uri http://127.0.0.1:8010/api/analyses `
-ContentType "application/json" `
-Body '{"repository":"fastapi/fastapi"}'Invoke-RestMethod http://127.0.0.1:8010/api/analysesTests
.\.venv\Scripts\python.exe -m ruff check .
.\.venv\Scripts\python.exe -m pytest --cov=appDocker
docker compose up --buildThe SQLite database is stored in the quorum-data volume.
Project structure
app/
analyzer.py transparent scoring and issue triage
database.py SQLite repository
github_client.py async GitHub REST client
main.py FastAPI application
mcp_server.py MCP tool surface
static/ dashboard
tests/ unit and API testsLicense
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityBmaintenanceAnalyze GitHub repositories into structured JSON with tech stack detection, dependency analysis, health signals, and security checks. No AI, fully deterministic. Available as CLI and MCP server.Last updated9MIT
- AlicenseCqualityDmaintenanceMonitors 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.Last updated1MIT
- Flicense-qualityDmaintenanceMCP server for automated GitHub repository quality management, enabling review, README generation, cleanup, and monitoring.Last updated
- Flicense-qualityDmaintenanceAI-powered GitHub repository analytics through MCP. Analyze repositories, track contributions, and get insights directly in your AI assistant.Last updated1
Related MCP Connectors
Screens public GitHub repos and PRs to generate risk maps, findings, and merge-readiness signals.
GitHub repo maintainability verdicts—maintained, slowing, at-risk, abandoned—via MCP.
GitHub project health, package dependency risk, trending repos, license & package comparison.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rom4ik1346/quorum-git-agent'
If you have feedback or need assistance with the MCP directory API, please join our Discord server