ci-triage-mcp
Exposes triage tools for security scan results (Trivy/Semgrep) stored in S3, enabling on-demand queries of findings, AI-powered classification via Bedrock, and scan summaries.
README
ci-triage-mcp
An MCP server that exposes ci-triage-agent's Trivy/Semgrep + AWS Bedrock security-triage pipeline as on-demand chat tools — ask "what's the triage status on repo X?" from Claude Desktop, no GitHub Actions run required.
Architecture
GitHub PR merged
│
▼
GitHub Action (Ci-mvp)
├─ Trivy scan
├─ Semgrep scan
├─ Bedrock/LangGraph triage → posts PR comment
└─ Upload scan-results to S3 (OIDC-assumed role, scoped s3:PutObject)
│
▼
s3://{bucket}/{repo_slug}/{sha}/trivy.json
s3://{bucket}/{repo_slug}/{sha}/semgrep.json
│
▼ (on-demand, read-only AWS identity, scoped s3:GetObject)
ci-triage-mcp (this project)
├─ list_scanned_repos — discover what's available
├─ list_findings — parse raw Trivy/Semgrep JSON
├─ triage_findings — real Bedrock/LangGraph call (imports
│ Ci-mvp's run_triage() directly, no subprocess)
└─ get_scan_summary — combined human-readable report
│
▼
Claude Desktop (stdio transport)
The MCP server never runs scans itself — it's a read-and-interpret layer downstream of the GitHub Action, which remains the only place scanning happens.
Tools
| Tool | Purpose | Notes |
|---|---|---|
list_scanned_repos |
List repos with results in S3, each with latest SHA + timestamp | No args. Use this first if you don't already know a repo/sha. |
list_findings |
Raw severity counts, finding IDs, affected files | sha="latest" supported |
triage_findings |
Full Bedrock/LangGraph classification (true positive / needs review / false positive, with rationale) | sha="latest" supported |
get_scan_summary |
Combined plain-text report (raw counts + triage verdict) | sha="latest" supported |
Setup
1. Install dependencies
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
2. Configure environment
Copy .env.example to .env and fill in:
AWS_REGION=us-east-1
AWS_PROFILE=default # local dev only; omit if using ambient creds
SCAN_OUTPUT_DIR=./scan-output # local cache directory
# Optional S3 automation — see "S3 hand-off" below
SCAN_RESULTS_S3_BUCKET=
SCAN_RESULTS_S3_PREFIX=
3. Register with Claude Desktop
Open Claude Desktop → Settings → Developer → Edit Config, and add:
{
"mcpServers": {
"ci-triage": {
"command": "/absolute/path/to/.venv/bin/python",
"args": ["/absolute/path/to/server.py"],
"env": {
"AWS_PROFILE": "default",
"SCAN_OUTPUT_DIR": "/absolute/path/to/scan-output",
"SCAN_RESULTS_S3_BUCKET": "your-bucket-name",
"SCAN_RESULTS_S3_PREFIX": ""
}
}
}
}
Fully quit and restart Claude Desktop (config only loads on startup), then
enable the ci-triage connector via the + button in a conversation.
4. Point ci-triage-agent's Action at your bucket
In the caller workflow (e.g. triage.yml), add two inputs to the existing
Ci-mvp step:
- uses: kere-sifon/Ci-mvp@v1.1
with:
aws-role-to-assume: ${{ secrets.CI_TRIAGE_AWS_ROLE_ARN }}
s3-bucket: your-bucket-name
s3-prefix: ""
The s3-prefix value here must exactly match SCAN_RESULTS_S3_PREFIX
above — a mismatch here is the single most likely thing to break the
hand-off (ask me how I know).
IAM
Two separate identities, least-privilege on each side:
- The Action's OIDC-assumed role needs
s3:PutObjectscoped toarn:aws:s3:::{bucket}/*, in addition to whateverbedrock:InvokeModelscope it already has. - The MCP server's local AWS identity (a named profile in local dev,
or its own role if deployed) needs only
s3:GetObjecton the same bucket — it never writes to S3.
Local testing without S3
If SCAN_RESULTS_S3_BUCKET is unset, the server falls back to
SCAN_OUTPUT_DIR only. Drop Trivy/Semgrep JSON manually at:
{SCAN_OUTPUT_DIR}/{repo_slug}/{sha}/trivy.json
{SCAN_OUTPUT_DIR}/{repo_slug}/{sha}/semgrep.json
where repo_slug replaces / with __ (e.g. myorg/my-service →
myorg__my-service).
Known limitations / roadmap
- stdio transport only. This runs as a local subprocess Claude Desktop spawns directly — no remote/HTTP access, no OAuth. Fine for personal use; would need the MCP 2026-07-28 spec's OAuth 2.1 resource-server pattern for any multi-user or remote deployment.
ci-triage-agentisn't a packaged dependency. Itspyproject.tomlhas no[build-system]table, so this project imports it via asys.path.insert()at a hardcoded local path (triage/bedrock_client.py) rather thanpip install -e. Fine for a single-machine setup; would need proper packaging to install this cleanly elsewhere.resolve_sha("latest")depends on S3 object timestamps, not git history — if uploads ever land out of commit order, "latest" reflects upload recency, not commit recency.
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.
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.
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.
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.