“The AI Operator” - A headless, autonomous agent capable of diagnosing, troubleshooting, and fixing infrastructure issues without human intervention.

Status: Completed (Jan 22, 2026)

Tech Stack: AWS Fargate, Model Context Protocol (MCP), Python, Terraform, AWS Secrets Manager


📋 Project Overview

The Autonomous AWS SysAdmin Agent is a cutting-edge “Agentic” system designed to reside within your secure AWS VPC. Unlike traditional chatbots that require a human to type commands, this agent operates autonomously utilizing the Model Context Protocol (MCP) to interact with infrastructure tools.

It serves as a “Level 1” SysAdmin, capable of:

🎯 Business Value


🏗️ Architecture Overview

The architecture prioritizes security and autonomy. The agent runs inside a secure network perimeter and uses standardized protocols to reason about the system.

graph TD
    subgraph PI ["Public Internet"]
        User["Human Operator"] -->|"Overview/Audit"| Dashboard["Agent Dashboard"]
    end

    subgraph VPC ["AWS VPC (Secure Perimeter)"]
        subgraph CP ["Control Plane (Fargate)"]
            Agent["🤖 SysAdmin Agent Core"]
            Context["MCP Host / Context Manager"]
        end

        subgraph Sec ["Security Layer"]
            Secrets["AWS Secrets Manager"]
            IAM["IAM Roles (Least Privilege)"]
        end

        subgraph Infra ["Managed Infrastructure"]
            EC2_1["Server A (Web)"]
            EC2_2["Server B (App)"]
            EC2_3["Server C (DB)"]
        end
    end

    Agent -->|"1. Reason & Plan"| Context
    Agent -->|"2. Fetch Creds (Safe)"| Secrets
    Agent -->|"3. SSH / Execute Tools"| EC2_1
    Agent -->|"3. SSH / Execute Tools"| EC2_2

    style Agent fill:#f9f,stroke:#333,stroke-width:2px
    style Secrets fill:#fab,stroke:#333,stroke-width:2px

Key Components