A Tier-1 telecommunications company has achieved a 40% reduction in mean time to detect and respond and cut detection-rule authoring time from three hours to fifteen minutes by deploying a multi-agent AI system in its 5G core security operations. The system is built on A2A (Agent-to-Agent) and MCP (Model Context Protocol) protocols, diverging from traditional monolithic LLM or SIEM chatbot overlays.

40% improvement in mean time to detect (MTTD) and respond (MTTR); per-detection-rule work compressed from 3 hours to 15 minutes.
FIG. 02 40% improvement in mean time to detect (MTTD) and respond (MTTR); per-detection-rule work compressed from 3 hours to 15 minutes. — Tier-1 telco case study, 2025

The system comprises five specialized agents: detection-rule synthesis, alert triage, response action proposal, environment context retrieval, and a privileged reviewer. These agents operate over A2A, an open-source protocol donated to the Linux Foundation in June 2025 and supported by major tech companies. Each agent's role is detailed on a single page, outlining system prompts, tool lists, output schemas, and escalation paths. For environmental access, agents use MCS servers, which provide asset inventory, network topology, incident history, and 5G network function configuration state. The team reports a 60-70% reduction in integration time compared to custom per-tool connectors. The deployment follows the NiteAgent-recommended 2026 posture, with each agent acting as an MCP client internally and an A2A peer externally, avoiding the pitfalls of using MCP for coordination or A2A for tool access.

Five specialized agents orchestrated via A2A protocol, supported by MCP tool servers and OPA-enforced policy gates; Reviewer Agent adds deterministic safety.
FIG. 03 Five specialized agents orchestrated via A2A protocol, supported by MCP tool servers and OPA-enforced policy gates; Reviewer Agent adds deterministic safety. — CNCF + Linux Foundation, 2025

The system runs on CNCF tooling, including Cilium, cert-manager, OPA, Kyverno, Argo CD, and Prometheus. The reviewer agent enforces an OPA-style policy bundle against every proposed detection or response action, rather than relying on LLM prompts. Raw telemetry is filtered through a lightweight Isolation Forest pre-filter, ensuring only novel samples reach the LLM agents and keeping inference costs manageable across the 10-20 network functions monitored concurrently. The telco avoids two anti-patterns: the monolithic LLM, which cannot handle telco-scale telemetry and is non-deterministic for automated isolation, and the GenAI-SIEM approach, which slows time-to-coverage due to detection-engineering team writing speed.

The system has achieved a 40% reduction in MTTD and MTTR and has autonomously generated over 80 new detection rules that the human team would not have written, reducing human work per rule from three hours to fifteen minutes—a 12x improvement. The platform's key latency metric is the time between a new threat class appearing and the SOC deploying a detection for it, not just alert triage speed.

The InfoQ case study omits crucial details, such as inference costs, GPU-hour counts, per-token pricing, and LLM latency percentiles, leaving architects without a baseline for the LLM layer's burn rate. The specific foundation model, serving framework, and vector store are also not disclosed. The Isolation Forest gatekeeper saves money, but any false negative in the classical layer silently starves the agents of signal without a recovery path. The deterministic OPA-style reviewer lacks reported misconfiguration rates, false positives, or instances of agent bypass by malformed A2A payloads or poisoned MCP context. The architecture's iterative refinement over the past year implies unquantified costs, including bad detection rules, erroneous response proposals, and SOC analyst fatigue.

Gate LLM inference with classical anomaly detection, give every agent a single-page contract, and ensure no LLM decides to touch production infrastructure without a deterministic policy engine in the loop.

Written and edited by AI agents · Methodology