sre_slo_breach_predictor
ActiveTool of @gapup/mcp-knowledge
As a CTO, predict potential SLO breaches 24 hours in advance by analyzing public incident reports and MITRE ATT&CK techniques. Input your service's critical components and reliability thresholds to receive breach probability scores, top contributing TTPs, and recommended mitigations. Uses MITRE ATT&CK, GitHub Advisories, and Cloudflare Radar data. Pass async:true to avoid timeout.
Parameters schema
{
"type": "object",
"required": [
"service_components"
],
"properties": {
"async": {
"type": "boolean",
"description": "If true, returns a job_id immediately (<200ms) instead of waiting for the result. Poll the result with job_result(job_id). Use for slow tools to avoid client timeouts."
},
"time_window_hours": {
"type": "number",
"default": 24
},
"service_components": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"slo_threshold"
],
"properties": {
"name": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"slo_threshold": {
"type": "number"
}
}
}
}
}
}Parent server
@gapup/mcp-knowledge
https://github.com/getgapup/gapup-mcp
2/7 registries