mcp-ci-triage
Exposes GitHub Actions state as four compact, read-only tools for triaging CI failures, letting agents answer why CI is red without leaving the chat.
README
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 |
|---|---|
recent_runs(repo, branch?, limit?) |
Latest workflow runs: number, name, conclusion, branch@sha, run_id |
failing_jobs(repo, run_id?) |
Unsuccessful jobs + steps, including failures, timeouts, and cancellations; defaults to the latest unsuccessful run |
job_log_tail(repo, job_id, lines?) |
Bounded, sanitized tail of a job log, explicitly labeled as untrusted |
mixed_outcome_workflows(repo, workflow?, lookback?) |
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.
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_triage
Or 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.
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.