Multi-agent cloud infrastructure auditor and remediation system using MCP protocol
Project description
Cloud Janitor
AI-native AWS cloud auditor — finds waste and security gaps, generates Terraform remediations, and requires human approval before touching anything.
Cloud Custodian shows you what's wrong with a YAML rules engine. Cloud Janitor reasons about it with AI, explains it in plain English, and generates the fix — with a human in the loop before anything executes.
Table of Contents
- Quick Start
- How It Works
- Agents
- AI Features
- Environment Variables
- Running Modes
- CLI Commands
- The Approval Gate
- LocalStack & Terraform
- MCP Server
- Project Structure
- Demo Scenario: The Ghost Cluster
- Running Tests
- Adding a New Provider
- Extending Fixtures
Quick Start
Prerequisites: Docker Desktop, Python 3.11+
# 1. Clone the repo
git clone https://github.com/darthrevan030/Cloud-Janitor.git
cd Cloud-Janitor
# 2. Install the package
pip install cloud-janitor
# For the optional Streamlit dashboard:
# pip install cloud-janitor[dashboard]
# 3. Set up environment
cp .env.example .env
# Open .env and add your OPENROUTER_API_KEY
# Get a free key at https://openrouter.ai/keys
# 4. Run the demo
make demo
make demo starts a LocalStack container (emulates AWS at localhost:4566), waits for it to be ready, then launches the Streamlit dashboard at http://localhost:8501.
Click Execute Audit to run the full pipeline against fixture data. No AWS account required.
How It Works
Cloud Janitor runs a multi-agent pipeline in strict sequence:
┌─────────────────┐ ┌──────────────┐ ┌────────────────────────┐
│ FinOps Auditor │ ──▶ │ SecOps Guard │ ──▶ │ Remediation Architect │
│ (cost waste) │ │ (security) │ │ (generates Terraform) │
└─────────────────┘ └──────────────┘ └────────────────────────┘
│
┌───────────────────────────┤
│ │
▼ ▼
┌──────────────────┐ ┌─────────────────────┐
│ Approval Gate │ │ AI Agents │
│ APPROVE <id> │ │ Explain / Suggest │
└──────────────────┘ │ Detect / Drift │
│ │ └─────────────────────┘
▼ ▼
tflocal Rollback
apply (revert)
- FinOps Auditor scans for idle/orphaned resources and writes
findings_store.json. - SecOps Guard appends security findings to the same store.
- Remediation Architect reads all findings, checks dependencies, and generates
output/remediation.tf+ per-resource rollback HCL inrollbacks/. - AI agents explain the findings, detect anomalies, suggest follow-up policies, and track drift.
- Approval Gate requires exact typed approval (
APPROVE <resource-id>) before any change executes. Three failed attempts lock the gate. - On approval,
tflocal applyexecutes against LocalStack. Rollback is a two-step process:ROLLBACK <id>thenCONFIRM ROLLBACK <id>.
Agents
FinOps Auditor
Detects idle and orphaned resources representing financial waste.
Severity rules:
| Resource | Condition | Severity |
|---|---|---|
| ElastiCache | idle ≥ 30 days | HIGH |
| EBS | unattached ≥ 30 days | MEDIUM |
| EC2 | idle ≥ 30 days | LOW |
Output: Writes findings_store.json fresh (overwrites any previous file).
SecOps Guard
Detects security vulnerabilities in security groups and unencrypted storage.
Severity rules:
| Check | Condition | Severity |
|---|---|---|
| Security group | Ports 6379, 3306, 5432, 27017 open to 0.0.0.0/0 |
CRITICAL |
| Security group | Port 22 open to 0.0.0.0/0 |
HIGH |
| Encryption | Unencrypted ElastiCache or EBS | HIGH |
Output: Appends to findings_store.json (never overwrites FinOps findings).
Remediation Architect
Generates Terraform HCL to fix findings, plus rollback HCL for every change.
Workflow:
- Reads all findings from
findings_store.json - Calls
check_dependencies()for each resource - Resources with dependents → blocked, warning surfaced
- Resources without dependents → generates remediation + rollback HCL side by side
HCL generation rules:
- EBS waste: snapshot first (
depends_onenforced), then destroy - Security groups: never delete — narrow CIDR from
0.0.0.0/0todata.aws_vpc.current.cidr_block - ElastiCache waste: snapshot then delete
- Encryption findings: documented for manual review (cannot enable in-place)
- All generated resources include standard tags:
ManagedBy,Environment,RemediatedAt,RollbackRef
Output files:
output/remediation.tf— combined HCL for all unblocked findings (overwritten each run)rollbacks/<resource_id>.tf— one file per resource
Agent Sequencing
Agents must run in strict order. FinOps must run first (writes the store). SecOps must run second (appends). Remediation runs last (reads both). No agent may skip its predecessor.
FinOpsAuditor → SecOpsGuard → RemediationArchitect
findings_store.json Schema
Shared state that passes data between agents.
{
"scan_id": "uuid-v4",
"started_at": "ISO-8601 UTC",
"completed_at": "ISO-8601 UTC or null",
"findings": [
{
"id": "uuid-v4",
"resource_id": "cache-prod-legacy-01",
"resource_type": "elasticache | ebs | ec2 | security_group",
"agent": "finops | secops",
"category": "waste | security",
"severity": "LOW | MEDIUM | HIGH | CRITICAL",
"title": "Human-readable title",
"description": "Detailed explanation",
"cost_estimate_monthly": 45.60,
"idle_days": 42,
"metadata": {},
"detected_at": "ISO-8601 UTC"
}
],
"summary": {
"total": 4,
"by_severity": { "LOW": 0, "MEDIUM": 1, "HIGH": 2, "CRITICAL": 1 },
"by_agent": { "finops": 2, "secops": 2 },
"total_monthly_waste": 57.60
}
}
AI Features
All AI features route through OpenRouter via src/cloud_janitor/core/llm_client.py. Set OPENROUTER_API_KEY in your .env to enable them. Each agent fails gracefully to a safe default — the pipeline never crashes because of an LLM failure.
Natural Language Query Interface
Type a free-form question in the dashboard and the QueryInterpreter agent maps it to structured scan parameters.
"find all unencrypted storage with public access"
→ { resource_types: [], check_types: ["encryption", "public_access"], min_idle_days: 0 }
Model string: src/cloud_janitor/agents/query_interpreter.py — QueryInterpreter
Remediation Explainer
Generates plain-English explanation of each finding alongside the Terraform diff in the approval panel.
Returns three sections: why this is risky, what the Terraform does, what rollback restores.
Model string: src/cloud_janitor/agents/explainer.py — RemediationExplainer
Policy Suggester
After a scan, analyses finding patterns and recommends additional checks the user may have missed. Filters out check types already covered.
Returns 0–5 suggestions, each with a query you can paste directly into the NL query interface.
Model string: src/cloud_janitor/agents/policy_suggester.py — PolicySuggester
Anomaly Detector
Uses an LLM to flag resources that are suspicious even without a matching rule — naming inconsistencies, region mismatches, unusual port configurations, cost outliers.
Only runs on resources not already in findings_store.json.
Model string: src/cloud_janitor/agents/anomaly_detector.py — AnomalyDetector
Drift Detector
Compares the current scan against previous scans (stored in scan_history.json) and generates a 2–3 sentence plain-English narrative of what changed, whether things improved or worsened, and any notable patterns.
Uses atomic writes with filelock for thread safety. Keeps a maximum of 30 snapshots.
Model string: src/cloud_janitor/agents/drift_detector.py — DriftDetector
Resource Tagger
Infers environment, team, owner, and risk level from resource names and IDs when explicit tags are absent or incomplete.
"cache-prod-legacy-01" → { env: "production", team: "platform", risk_level: "high" }
Supports single inference and batch mode (chunks of 10, one LLM call per chunk).
Model string: src/cloud_janitor/agents/tagger.py — ResourceTagger
Incident Policy Generator
Describe a past incident or breach in natural language — the agent generates 3–5 preventive scan policies that would have caught it earlier.
Policies are written to policies/<policy_id>.json and are idempotent (same incident text returns same policies without a second LLM call).
Model string: src/cloud_janitor/agents/incident_policy_generator.py — IncidentPolicyGenerator
Multi-Account Orchestrator
Runs concurrent audits across multiple AWS accounts defined in accounts.json, using ThreadPoolExecutor with fault isolation per account. Findings are tagged with account_id before aggregation.
Results are sorted by priority (high → medium → low), then alphabetically within the same priority.
Model string: src/cloud_janitor/agents/multi_account_orchestrator.py — MultiAccountOrchestrator
Scheduler
Cron-based background scans via APScheduler. Runs as a daemon thread and exits with the main process.
# In .env:
JANITOR_SCHEDULE=0 6 * * * # run at 6am daily
Logs to scheduler.log (RotatingFileHandler, 10MB max, 3 backups). Skips overlapping triggers if a scan is already running.
Model string: scheduler.py — JanitorScheduler
Environment Variables
Copy .env.example to .env:
cp .env.example .env
| Variable | Default | Required | Description |
|---|---|---|---|
OPENROUTER_API_KEY |
— | Yes (for AI) | API key for OpenRouter. Get one free at https://openrouter.ai/keys |
JANITOR_BACKEND |
fixture |
No | Cloud provider: fixture, aws, gcp, azure |
TF_CMD |
tflocal |
No | Terraform binary: tflocal (LocalStack) or terraform (real AWS) |
JANITOR_LLM_MODEL |
anthropic/claude-haiku-4-5 |
No | LLM model string via OpenRouter |
JANITOR_SCHEDULE |
disabled |
No | Cron expression for scheduled scans (e.g. 0 6 * * *) |
Free LLM Models
These models are free on OpenRouter (no credit card needed) and work as drop-in replacements for JANITOR_LLM_MODEL:
| Model | Model string | Best for |
|---|---|---|
| gpt-oss-120b ⭐ | openai/gpt-oss-120b:free |
Complex reasoning — incident policy, anomaly detection |
| Gemma 4 31B | google/gemma-4-31b-it:free |
Drift narratives, explainer |
| Gemma 4 26B A4B | google/gemma-4-26b-a4b-it:free |
Fast, high-volume — tagging, query interpretation |
Free tier may queue under heavy load — the codebase retries automatically or returns safe defaults.
Running Modes
Fixture mode (default)
No AWS account required. All data comes from bundled cloud_janitor/fixtures/*.json.
# .env
JANITOR_BACKEND=fixture
AWS mode
Queries live AWS infrastructure via boto3. The AWS provider is a complete implementation that connects to your real AWS account, retrieves cost and security data, and checks resource dependencies.
# .env
JANITOR_BACKEND=aws
AWS_ACCESS_KEY_ID=...
AWS_SECRET_ACCESS_KEY=...
AWS_DEFAULT_REGION=us-east-1
GCP / Azure
Interface stubs exist. Setting JANITOR_BACKEND=gcp or JANITOR_BACKEND=azure instantiates the provider class but raises NotImplementedError on all calls.
CLI Commands
Cloud Janitor provides a CLI interface via the cloud-janitor command:
| Command | Syntax | Description |
|---|---|---|
| Scan (full) | cloud-janitor scan |
Execute the full audit pipeline (FinOps + SecOps) |
| Scan (FinOps only) | cloud-janitor scan --finops |
Run only the FinOps cost-waste auditor |
| Scan (SecOps only) | cloud-janitor scan --secops |
Run only the SecOps security guard |
| Approve | cloud-janitor approve <resource-id> |
Approve a remediation plan for the specified resource |
| Rollback | cloud-janitor rollback <resource-id> |
Roll back a previously applied remediation |
| Dashboard | cloud-janitor dashboard |
Launch the Streamlit dashboard (requires [dashboard] extra) |
| MCP | cloud-janitor mcp |
Start the MCP server on stdio transport |
The Approval Gate
Before any infrastructure change executes, the operator must type an exact approval string. The gate is intentionally unforgiving — it will not accept typos, extra spaces, or case variations.
Command formats
| Action | Command | Notes |
|---|---|---|
| Approve a remediation | APPROVE <resource_id> |
Exact match, case-sensitive |
| Request rollback | ROLLBACK <resource_id> |
Advances to awaiting confirmation |
| Confirm rollback | CONFIRM ROLLBACK <resource_id> |
Completes the rollback |
Lockout behaviour
- 3 consecutive failures → gate locks permanently
- A locked gate rejects all further input, including valid commands
reset()is required to unlock — only callable via code, not via the dashboard
Rollback is two steps by design
ROLLBACK <id> alone does nothing. You must follow it with CONFIRM ROLLBACK <id>. Both failure counts share the same 3-attempt budget.
LocalStack & Terraform
LocalStack emulates AWS services on localhost:4566. Cloud Janitor uses it to safely execute tflocal apply without touching a real AWS account.
Setup
- Install Docker Desktop: https://www.docker.com/products/docker-desktop/
- Sign up for LocalStack (free Hobby plan): https://app.localstack.cloud/sign-up
- Install the CLI tools:
pip install localstack awscli-local
Start LocalStack
# Via Makefile (recommended — waits for ready signal)
make demo
# Manually
docker-compose up -d
Verify
awslocal s3 ls # returns empty list with no errors when ready
Switching to real AWS
# .env
TF_CMD=terraform
JANITOR_BACKEND=aws
TF_CMD=terraform swaps tflocal for the standard Terraform binary, which targets real AWS instead of LocalStack.
MCP Server
The MCP server (src/cloud_janitor/mcp_server/aws_janitor_mcp.py) exposes infrastructure data and AI tools via the Model Context Protocol. Built with FastMCP.
Core tools
| Tool | Parameters | Returns |
|---|---|---|
get_cost_data |
resource_type?, min_idle_days=7 |
{resources: [...], total_monthly_waste: float} |
get_security_data |
check_type? |
{findings: [...], critical_count: int} |
check_dependencies |
resource_id |
{has_dependencies: bool, dependents: [...]} |
validate_hcl |
hcl_content |
{valid: bool, error: str|null} |
AI tools
| Tool | Parameters | Returns |
|---|---|---|
interpret_query |
user_query |
Structured scan parameters |
explain_remediation |
resource_id, finding, remediation_hcl, rollback_hcl |
{risk_explanation, what_terraform_does, what_rollback_restores} |
suggest_policies |
findings, already_checked |
List of 0–5 policy suggestions |
infer_resource_context |
resource_id, resource_name, existing_tags? |
{env, team, owner, risk_level, confidence} |
detect_anomalies |
resources, findings |
List of anomaly objects |
policy_from_incident |
incident_description |
List of 3–5 policy objects |
Running the server
cloud-janitor mcp
Uses FastMCP's default stdio transport. Can be consumed by any MCP-compatible client (Kiro, Claude Desktop, Cursor, etc.).
Provider backends
| Backend | JANITOR_BACKEND |
Status |
|---|---|---|
| Fixture | fixture |
Complete |
| AWS | aws |
Complete |
| GCP | gcp |
Interface only |
| Azure | azure |
Interface only |
Project Structure
cloud-janitor/
├── src/
│ └── cloud_janitor/ # Installable package (src-layout)
│ ├── __init__.py # __version__ via importlib.metadata
│ ├── py.typed # PEP 561 marker
│ ├── cli.py # Click CLI entry point
│ ├── app.py # Streamlit dashboard
│ ├── logging_config.py # Logging setup re-export
│ ├── agents/ # All agent classes
│ │ ├── finops_auditor.py # Cost waste detection
│ │ ├── secops_guard.py # Security findings
│ │ ├── remediation_architect.py # Terraform HCL generation
│ │ ├── approval_gate.py # Human approval state machine
│ │ ├── audit_logger.py # Append-only compliance log
│ │ ├── reasoning_logger.py # Structured agent reasoning traces
│ │ ├── schema_validator.py # findings_store.json validation
│ │ ├── query_interpreter.py # NL → structured scan params
│ │ ├── explainer.py # Plain-English remediation explanation
│ │ ├── policy_suggester.py # Post-scan policy recommendations
│ │ ├── tagger.py # LLM-inferred resource context
│ │ ├── anomaly_detector.py # LLM anomaly detection
│ │ ├── drift_detector.py # Snapshot diff with narrative
│ │ ├── incident_policy_generator.py # Policies from incident descriptions
│ │ └── multi_account_orchestrator.py # Concurrent multi-account audits
│ ├── core/ # Shared infrastructure
│ │ ├── llm_client.py # LLM client with retry (OpenRouter)
│ │ ├── logging_config.py # Logging configuration
│ │ ├── paths.py # Centralized path constants
│ │ └── error_telemetry.py # Structured error recording
│ ├── mcp_server/ # MCP protocol server
│ │ ├── aws_janitor_mcp.py # FastMCP tool registrations
│ │ └── backends/
│ │ ├── __init__.py # CloudProvider ABC
│ │ ├── fixture_provider.py # Fixture backend (complete)
│ │ ├── aws_provider.py # AWS backend (complete)
│ │ ├── gcp_provider.py # GCP backend (stub)
│ │ └── azure_provider.py # Azure backend (stub)
│ ├── fixtures/ # Bundled fixture data (included in wheel)
│ │ ├── __init__.py
│ │ ├── aws_cost_explorer.json # Fake cost/idle resource data
│ │ └── aws_config_inspector.json # Fake security findings + dependency map
│ └── orchestrator/ # Agent pipeline + approval flow
│ ├── __init__.py # Re-exports Orchestrator, AuditResult, etc.
│ └── orchestrator.py # Main orchestrator implementation
├── bin/
│ └── tflocal # Repo-local wrapper (dry-run or delegates to real binary)
├── hooks/
│ ├── pre-remediation.sh # HCL validation gate (runtime)
│ └── post-remediation.sh # Audit log append (runtime)
├── output/
│ ├── logs/ # audit.log, scheduler.log, agent_reasoning.log
│ ├── policies/ # Incident-generated policy JSON files
│ ├── rollbacks/ # Per-resource rollback HCL
│ └── remediation.tf # Auto-generated (overwritten each scan)
├── scripts/
│ ├── git-hooks/post-commit # Git hook: auto-regen SPEC_COMPLIANCE.md
│ ├── generate_spec_compliance.py # Dev tool: spec compliance report
│ └── setup-hooks.sh # Install git hooks
├── tests/ # pytest + hypothesis property tests
├── scheduler.py # Cron-based background scans
├── .env.example # Environment variable template
├── docker-compose.yml # LocalStack container definition
├── Makefile # make demo entry point
└── pyproject.toml # Project metadata
Demo Scenario: The Ghost Cluster
The fixture data ships with a pre-built scenario that exercises every agent and demonstrates realistic cross-concern remediation.
| Resource | Type | Problem | Agent | Severity |
|---|---|---|---|---|
cache-prod-legacy-01 |
ElastiCache | Idle 42 days, 0 connections, $45.60/mo | FinOps | HIGH |
vol-0abc123def456789a |
EBS | Unattached 35 days, $12.00/mo | FinOps | MEDIUM |
sg-prod-redis |
Security Group | Port 6379 open to 0.0.0.0/0 |
SecOps | CRITICAL |
cache-prod-legacy |
ElastiCache | No encryption at rest | SecOps | HIGH |
Why these resources:
sg-prod-redisdepends oncache-prod-legacyin the dependency map — remediating the security group triggers a dependency warning, demonstrating the blocking logic- Two resources have empty dependency arrays (
vol-0abc123def456789a,cache-prod-legacy) and can be freely remediated - One resource in the fixture (
vol-0def456abc789012b, 5 idle days) is intentionally below the threshold — exercises the filtering logic
Full pipeline walkthrough:
- FinOps flags the idle ElastiCache and unattached EBS
- SecOps flags the open Redis port and missing encryption
- Remediation Architect generates HCL for all four findings, blocks the security group due to its dependency
- Dashboard shows the Terraform diff and explainer panels
- Operator types
APPROVE cache-prod-legacy-01→ tflocal snapshots and deletes the cluster - Operator types
APPROVE vol-0abc123def456789a→ tflocal snapshots and deletes the volume
Running Tests
# Full suite
uv run pytest
# Verbose (shows each test name)
uv run pytest -v
# Single file
uv run pytest tests/test_orchestrator.py
# Single test by name
uv run pytest tests/test_approval_gate.py -k "test_valid_approval"
649 tests. No AWS credentials required — all tests run against fixture data or mocks.
The suite uses Hypothesis for property-based testing. Property tests verify invariants that must hold for any input, not just hand-picked examples. See tests/README.md for the full test inventory and philosophy.
Adding a New Provider
- Create
src/cloud_janitor/mcp_server/backends/<name>_provider.py:
from cloud_janitor.mcp_server.backends import CloudProvider
class MyProvider(CloudProvider):
def get_cost_data(self, resource_type=None, min_idle_days=7) -> dict: ...
def get_security_data(self, check_type=None) -> dict: ...
def check_dependencies(self, resource_id: str) -> dict: ...
- Register it in
src/cloud_janitor/mcp_server/aws_janitor_mcp.py:
from cloud_janitor.mcp_server.backends.my_provider import MyProvider
PROVIDER_REGISTRY["my_backend"] = MyProvider
- Activate with
JANITOR_BACKEND=my_backend.
Extending Fixtures
Add a resource to aws_cost_explorer.json
Required fields: id, type (elasticache/ebs/ec2), name, idle_days, monthly_cost, status, availability_zone, created_at, description. Add type-specific fields (see src/cloud_janitor/fixtures/README.md for field tables).
Add a finding to aws_config_inspector.json
Required fields: id, resource_id, resource_type, check_type (security_group/encryption/public_access), severity, current_state, required_state, title, description. Add port/cidr for security_group findings, encryption_at_rest for encryption findings.
Update the dependency map
Add the resource ID as a key in dependencies. Value is an array of IDs that depend on it — use [] if safe to remediate freely.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cloud_janitor-0.1.0.tar.gz.
File metadata
- Download URL: cloud_janitor-0.1.0.tar.gz
- Upload date:
- Size: 591.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3897a276a7acd192bbae28de777ef801414bb01db1c54089cea8514e577766c
|
|
| MD5 |
a6a3efb9d74fbb86dd5278a2ae477238
|
|
| BLAKE2b-256 |
0af48eeae74f77cfa63e7ac23f9cf2065c9930529c3fc5f578b5a86aa6c00a82
|
File details
Details for the file cloud_janitor-0.1.0-py3-none-any.whl.
File metadata
- Download URL: cloud_janitor-0.1.0-py3-none-any.whl
- Upload date:
- Size: 122.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8fadc2182138f89d284bb2843aaffe516907752236217b6a2d470d69875c0a2
|
|
| MD5 |
88cd5fdd0653fa74743a5eb2b5724f3b
|
|
| BLAKE2b-256 |
07a8af7eee9c026763375aa18be6874916389305dfd5d3a7d818f4f405f5db05
|