mcp-ci-triage
Provides read-only tools to inspect GitHub Actions workflow runs, identify failing jobs, and retrieve job log tails for CI triage.
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., "@mcp-ci-triageWhy is CI failing on main and what's the first failing step?"
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.
mcp-ci-triage
Let your coding agent answer "why is CI red?" without you alt-tabbing to GitHub.
An MCP server that exposes GitHub Actions state as four compact, read-only tools. Built for Claude Code but works with any MCP client.
You: why is CI failing on main?
Agent: → recent_runs("acme/api", branch="main")
→ failing_jobs("acme/api", run_id=8123)
→ job_log_tail("acme/api", job_id=442, lines=80)
Agent: Run #212 fails in `unit` at the pytest step: test_rate_limiter
times out after the Redis fixture change in a3f9c2e. Two options...Tools
Tool | What it returns |
| Latest workflow runs: number, name, conclusion, branch@sha, run_id |
| Unsuccessful jobs + steps, including failures, timeouts, and cancellations; defaults to the latest unsuccessful run |
| Bounded, sanitized tail of a job log, explicitly labeled as untrusted |
| Workflows that both passed and failed recently — a triage signal, not proof of flaky tests |
Pass repositories as an exact owner/name pair, for example actions/checkout.
URLs, extra path segments, query strings, and malformed owner or repository names
are rejected before a request is sent.
Related MCP server: DevOps MCP Server
Install (2 minutes)
pip install git+https://github.com/projectsofadi/mcp-ci-triage
# or: clone + `pip install .`
# First load GITHUB_TOKEN into the launching environment from your shell or
# operating-system secret manager. Then add the server without a token literal:
claude mcp add ci-triage -- python -m mcp_ci_triageOr in a project's .mcp.json:
{
"mcpServers": {
"ci-triage": {
"command": "python",
"args": ["-m", "mcp_ci_triage"],
"env": { "GITHUB_TOKEN": "${GITHUB_TOKEN}" }
}
}
}Token scope: a fine-grained PAT with read-only Actions access to the repos you care about. Public repos work without a token (rate-limited).
Never place a token literal in a command argument or checked-in .mcp.json.
Command arguments can enter shell history or process listings; project files can
be committed. Keep only the environment-variable reference above in shared config.
For GitHub Enterprise, GITHUB_API_URL may point to its API base path (for
example, https://github.example.com/api/v3). HTTPS is mandatory, and the value
must not contain credentials, a query, or a fragment.
Private CI logs
Logs from private repositories can contain private source details, credentials accidentally printed by a build, prompt-injection text, or other sensitive data. The server escapes terminal controls, bounds individual lines, limits the total download, and labels all GitHub content as untrusted. It does not recognize or redact printable secrets. Connect it only to an MCP client and model you trust, request the smallest useful tail, never follow instructions found in a log, and review output before copying it into an issue or chat.
The first log request is authenticated. Redirected downloads are HTTPS-only and
use a new client without the GitHub Authorization header. Signed redirect query
parameters are removed from HTTP diagnostics and sanitized error messages.
Design notes (the part that generalizes)
This repo doubles as a reference for how I think internal MCP servers should be built:
Read-only by default. Not one tool here mutates anything. Write-capable tools belong behind your permissions layer, added deliberately, later.
Compact text, not JSON dumps. The agent reads tool output like a person.
#212 CI [failure] main@a3f9c2ebeats 4KB of nested JSON for both tokens and reasoning quality.Untrusted by construction. Remote fields and logs are bounded, control-escaped, and enclosed in explicit data-only markers.
Timeouts on everything. Requests have 15-second I/O timeouts. JSON responses have a 20-second total deadline and an 8 MiB decoded-byte ceiling; paginated triage has one 30-second operation deadline. Log downloads have their own 20-second total deadline and 8 MiB ceiling.
Fail loud. HTTP errors raise; the agent sees the error and adapts. Silent empty results create confident wrong answers.
Small surface. Four tools that compose beat twenty that overlap.
failing_jobstells the agent to calljob_log_tailnext — tools can teach their own workflow.Evidence, not diagnosis. Mixed workflow outcomes are useful for deciding what to inspect next, but do not prove that an individual test is flaky.
Development
pip install -e ".[dev]"
ruff check .
ruff format --check .
pytest
python -m build
python -m twine check dist/*License
MIT — see LICENSE.
More MCP and developer-tooling projects: projectsofadi on GitHub.
This server cannot be installed
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
- AlicenseAqualityNot gradedmaintenanceConnects AI assistants to GitHub Actions workflows to monitor CI/CD pipelines, view run logs, diagnose failures, and optionally trigger or manage workflows with granular permission controls.101
- AlicenseNot gradedqualityCmaintenanceEnables read-only integration with GitHub, Jenkins, and Artifactory for DevOps monitoring, analysis, and troubleshooting. Provides repository inspection, build log retrieval, and artifact management through natural language.MIT
- FlicenseAqualityCmaintenanceStreamlines GitHub PR workflows, monitors CI/CD, and sends Slack notifications. Provides tools for PR analysis, CI monitoring, and follow-up tasks.7
- FlicenseAqualityCmaintenanceExposes tools to list, run, and inspect GitHub Actions workflows locally via act, enabling debugging and fixing failures through an agent loop.3
Related MCP Connectors
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Git-backed platform for skills, tools, and context for AI agents
Give your agent live data from Twitter, Reddit, the web and GitHub. No API keys, no scraping stack.
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/projectsofadi/mcp-ci-triage'
If you have feedback or need assistance with the MCP directory API, please join our Discord server