Skip to main content
Glama
drummer475-94

secops-agent-triage

secops-agent-triage: AI Agentic Security Triage & MCP Workflow

Python Version MCP Ready Coverage License

secops-agent-triage is a portfolio Model Context Protocol (MCP) and CLI security-triage implementation for repeatable Tier 1 SOC alert analysis. It ingests raw security logs (Windows Event Logs, AWS CloudTrail, Syslog), extracts IOC entities, orchestrates configurable threat-intelligence adapters (VirusTotal, AbuseIPDB, AlienVault OTX), constructs inspectable decision traces, and outputs structured JSON assessments with legacy NIST SP 800-61 Rev. 2-style phases and MITRE ATT&CK technique mappings. NIST SP 800-61 Rev. 3 is the current guidance; deterministic mock mode is provided for offline verification.


โšก 60-Second Quick Review Guide

Key Feature

Implementation Highlights

Multi-Format Ingestion Engine

Unified facade parsing Windows Event Logs (EVTX EventID 4688, 4624, 4625, 7045), AWS CloudTrail JSON, and Syslog (RFC 5424 / 3164) with Base64 PowerShell payload decoding.

Async Threat Intel Tools

Parallel async API tools for VirusTotal, AbuseIPDB, and AlienVault OTX with deterministic mock fallback when API keys are omitted.

Verifiable Reasoning Engine

Emits multi-step ReasoningStep traces detailing exact actions taken, observations, logical deductions, and confidence scores for auditability.

Industry Framework Mapping

Mapping to MITRE ATT&CK technique IDs (e.g. T1059.001, T1110.001, T1098) and legacy NIST SP 800-61 Rev. 2 incident categories (CAT 1, CAT 2, CAT 3).

Dual Interface Architecture

Standalone CLI (secops-triage) and Model Context Protocol (MCP) server supporting stdio transport.

Test Suite & Coverage

Comprehensive 60-test pytest suite with 93.81% total coverage testing parsers, tools, engine, CLI, MCP endpoints, and malformed-input resilience.


Related MCP server: Splunk MCP for SOC Operations

๐Ÿ—๏ธ Architecture & Data Flow

graph TD
    Alert[Raw Security Alert: EVTX / CloudTrail / Syslog] --> Ingest[Ingestion Facade & Parser]
    Ingest --> Extract[Entity Extraction: IPs, Hashes, Domains, Accounts]
    
    subgraph Threat_Intel_Orchestration [Async Threat Intel Tools]
        VT[VirusTotal Tool]
        Abuse[AbuseIPDB Tool]
        OTX[AlienVault OTX Tool]
    end

    Extract --> VT
    Extract --> Abuse
    Extract --> OTX
    
    VT --> Engine[Verifiable Reasoning Engine]
    Abuse --> Engine
    OTX --> Engine
    
    Engine --> Trace[Step-by-Step Reasoning Trace Construction]
    Trace --> Mapper[NIST SP 800-61 & MITRE ATT&CK Mapper]
    Mapper --> Output[Structured TriageAssessment JSON]
    
    Output --> CLI[CLI Interface: secops-triage]
    Output --> MCP[MCP Server: stdio transport]

๐Ÿš€ Installation & Setup

# Clone repository and navigate to folder
cd secops-agent-triage

# Install package in editable mode with test dependencies
pip install -e ".[test]"

๐Ÿ’ป CLI Usage

The CLI (secops-triage or python -m secops_agent_triage.cli) accepts raw logs via string or file, auto-detects formats, and outputs structured TriageAssessment JSON.

1. Default Sample Run (Windows EventID 4688 Execution)

secops-triage --mock

2. File Ingestion

secops-triage --file sample_cloudtrail.json --format cloudtrail --mock --output-json assessment.json

3. Inline Raw Alert

secops-triage --raw "<165>1 2026-08-13T11:00:00Z edge-fw sshd 1234 - - Failed password for root from 192.0.2.1 port 22" --format syslog --mock

๐Ÿค– Model Context Protocol (MCP) Server Setup

secops-agent-triage exposes MCP tools for integration into AI agent workbenches (e.g. Claude Desktop, VS Code Antigravity IDE):

MCP Tools Provided:

  • triage_security_alert: Complete alert ingestion, threat intel lookup, reasoning trace, and NIST/MITRE assessment.

  • lookup_ip_reputation: Queries VirusTotal, AbuseIPDB, and AlienVault OTX for IP reputation.

  • lookup_hash_reputation: Queries VirusTotal and AlienVault OTX for file hash reputation.

  • lookup_domain_reputation: Queries VirusTotal and AlienVault OTX for domain reputation.

MCP Configuration (claude_desktop_config.json or mcp_settings.json):

{
  "mcpServers": {
    "secops-agent-triage": {
      "command": "python",
      "args": ["-m", "secops_agent_triage.mcp_server"],
      "env": {}
    }
  }
}

Mock mode is the safe default and needs no credentials. For live lookups, set VT_API_KEY, ABUSEIPDB_API_KEY, and/or OTX_API_KEY in the MCP client environment; never commit API keys to the configuration file.


๐Ÿงช Testing & Coverage

Run the unit and integration test suite:

pytest --cov=secops_agent_triage --cov-report=term-missing --cov-fail-under=90

Test Coverage Results:

TOTAL: 773 statements, 93.81% coverage
All 60 test cases PASSED.
A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

โ€“Maintainers
โ€“Response time
โ€“Release cycle
โ€“Releases (12mo)
Commit activity

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

  • A
    license
    -
    quality
    C
    maintenance
    Enables AI-powered threat intelligence analysis of IPs, domains, URLs, and file hashes across multiple threat intelligence platforms (VirusTotal, AlienVault OTX, AbuseIPDB, IPinfo) with APT attribution and interactive reporting through natural language queries.
    40
    Apache 2.0
  • A
    license
    B
    quality
    D
    maintenance
    Enables AI-driven SOC investigations by providing automated Splunk querying, threat intelligence enrichment, and response actions through natural language. Includes tools for IP pivoting, lateral movement detection, and label harvesting.
    31
    1
    Apache 2.0
  • A
    license
    -
    quality
    A
    maintenance
    Enables natural language threat hunting and incident response by connecting LLMs to enterprise security data sources like Elasticsearch, EVTX logs, PCAP files, and Velociraptor.
    206
    GPL 3.0
  • A
    license
    -
    quality
    D
    maintenance
    Turns Claude into an autonomous SOC analyst by ingesting security logs, detecting anomalies with ML, correlating events, mapping to MITRE ATT&CK, and generating incident reports.
    MIT

View all related MCP servers

Related MCP Connectors

  • Real-time threat intel for AI agents: 890K+ IOCs incl. prompt-injection & AI-skill threats

  • Pay-per-call cybersecurity for AI agents: vuln scans, threat intel, compliance, code security.

  • AI-powered threat intelligence, smart contract auditing, and cybersecurity OSINT.

View all MCP Connectors

Latest Blog Posts

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/drummer475-94/secops-agent-triage'

If you have feedback or need assistance with the MCP directory API, please join our Discord server