AynOps

AynOps

AI-powered cybersecurity reconnaissance platform that allows users to perform threat analysis and ethical scanning of domains via natural language, with policy enforcement and audit logging.

Category
Visit Server

README

<div align="center">

šŸ›”ļø AynOps

AI-Powered Cybersecurity Reconnaissance Platform

Python FastMCP ArmorIQ License Hackathon

Talk to Claude. Get a full threat intelligence report. Ethically enforced. Audit-ready.

Features • Architecture • Quick Start • Demo • Team

</div>


The Problem

Security reconnaissance requires 6+ different tools, hours of manual work, and deep CLI expertise. Junior analysts miss critical correlations. There's no ethical enforcement preventing unauthorized scans. And there's zero audit trail for compliance.

The Solution

AynOps is a Model Context Protocol (MCP) server that gives Claude real-time cybersecurity reconnaissance capabilities — wrapped with ArmorIQ policy enforcement and cryptographic audit logging.

You type in plain English. AynOps handles the rest.

"Run a threat analysis on example.com"

→ ArmorIQ verifies the target is authorized
→ 10 recon tools run in parallel
→ Claude correlates findings across all tools
→ Structured threat report with risk score and remediation roadmap
→ Every action logged to ArmorIQ's tamper-proof audit trail


What Makes AynOps Different

Traditional Tools (Nmap, Shodan) AynOps
Interface CLI expertise required Plain English conversation
Analysis Raw data dumps AI-correlated threat intelligence
Ethics No enforcement ArmorIQ policy gate on every call
Audit Manual logging Cryptographic audit trail (automatic)
Speed Run tools one by one 10 tools in parallel
CVEs Separate lookup Auto-triggered from detected software

Features

šŸ” 10 Recon Tools

Tool Capability
whois_lookup Domain owner, registrar, expiry, name servers
dns_enumeration DNS records + subdomain brute-force
port_scan Nmap-powered — ports, services, version detection
ssl_inspect SSL cert issuer, expiry, cipher, TLS version
tech_stack_detect Web server, CMS, CDN, JS frameworks, security headers
cert_transparency Subdomain discovery via CT logs
asn_lookup ASN, ISP, org, geolocation for any IP/domain
ip_reputation AbuseIPDB malicious IP check
cve_lookup NVD database — CVEs by software + version
full_recon All tools in parallel — one command, complete picture

🧠 AI Threat Correlation (run_threat_analysis)

Unlike full_recon which summarizes each tool separately, run_threat_analysis instructs Claude to correlate findings across all tools together:

  • Connects detected software versions directly to CVEs
  • Links SSL expiry to open HTTPS ports as a compound risk
  • Combines missing headers with detected CMS for exploit surface analysis
  • Outputs a structured report: Executive Summary → Critical Findings → Risk Score (0–100) → Remediation Roadmap

šŸ›”ļø ArmorIQ Ethical Enforcement

Every sensitive tool call is gated through ArmorIQ:

  1. capture_plan — cryptographically signs Claude's intent before any tool runs
  2. get_intent_token — mints a short-lived signed token (prevents prompt injection)
  3. Policy enforcement — unauthorized targets are blocked before your MCP server is ever reached
  4. Audit trail — every ALLOW/BLOCK decision logged automatically to platform.armoriq.ai
You: "scan google.com"
ArmorIQ: āŒ BLOCKED — target not in authorized scope
         Audit ID: AQ-0012 | Logged to platform.armoriq.ai

Architecture

User (Claude Desktop)
        │
        ā–¼
   Claude AI
   (parses intent, decides which tools to call)
        │
        ā–¼
 ArmorIQ Policy Gate
 (capture_plan → get_intent_token → verify)
        │
   ā”Œā”€ā”€ā”€ā”€ā”“ā”€ā”€ā”€ā”€ā”
   │         │
ALLOW      BLOCK → logged, user notified
   │
   ā–¼
AynOps MCP Server (streamable-http)
        │
   ā”Œā”€ā”€ā”€ā”€ā”“ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”
   │  Wave 1 (parallel)           │
   ā”œā”€ā”€ whois_lookup               │
   ā”œā”€ā”€ dns_enumeration            │
   ā”œā”€ā”€ port_scan (Nmap)           │
   ā”œā”€ā”€ ssl_inspect                │
   ā”œā”€ā”€ tech_stack_detect          │
   ā”œā”€ā”€ asn_lookup                 │
   ā”œā”€ā”€ cert_transparency          │
   └── headers_analyzer           │
        │                         │
   ā”Œā”€ā”€ā”€ā”€ā”“ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”          │
   │  Wave 2 (parallel)│          │
   ā”œā”€ā”€ cve_lookup       │         │
   └── ip_reputation    │         │
        ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜
        │
        ā–¼
 threat_analysis_tool
 (extract_signals + correlation instructions)
        │
        ā–¼
 Claude generates correlated
 Threat Intelligence Report
        │
        ā–¼
 ArmorIQ Audit Log
 (tamper-proof, platform.armoriq.ai)

Tech Stack

Layer Technology
AI Interface Claude (Anthropic) via MCP
MCP Framework FastMCP 3.3+ (streamable-http transport)
Language Python 3.12+
Port Scanning Nmap
Recon Libraries python-whois, dnspython, ssl, requests
CVE Database NVD (National Vulnerability Database)
IP Reputation AbuseIPDB
ASN / Geo ipapi.com
Ethical Layer ArmorIQ Python SDK
Containerization Docker
Deployment Railway (cloud)

Quick Start

Prerequisites

1. Clone & Install

git clone https://github.com/gaoharimran29-glitch/AynOps-mcp-hackathon
cd AynOps-mcp-hackathon
pip install -r requirements.txt

2. Configure Environment

cp .env.example .env
# Edit .env and add your API keys
ABUSEIPDB_API_KEY=your_key     # abuseipdb.com (free)
IP_API_KEY=your_key            # ipapi.com (free)
ARMORIQ_API_KEY=your_key       # platform.armoriq.ai
ANALYST_EMAIL=you@domain.com   # your identity in audit logs

3. ArmorIQ Setup

pip install armoriq-sdk
armoriq login

Then register your server on platform.armoriq.ai → MCP Servers.

4. Run Server

# HTTP mode (for Claude Desktop remote connection / Railway deployment)
uv run server.py

# Local stdio mode (for quick local testing)
fastmcp run server.py

5. Connect Claude Desktop

{
  "mcpServers": {
    "cybersecurity": {
      "type": "streamable-http",
      "url": "http://localhost:8000/mcp"
    }
  }
}

Demo

Authorized Scan

You: "run threat analysis on testphp.vulnweb.com"

ArmorIQ: āœ… Target authorized — intent signed (AQ-0001)

[10 tools run in parallel...]

Claude: 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
šŸ›”ļø AynOps Threat Intelligence Report
Target: testphp.vulnweb.com
Risk Score: 87/100 — CRITICAL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Executive Summary:
testphp.vulnweb.com presents a critically vulnerable attack surface.
Apache 2.4.49 is running on ports 80 and 443, affected by
CVE-2021-41773 (CVSS 9.8) — remote code execution with no auth.
SSL cert expires in 12 days, compounding the exposure window.

šŸ”“ Critical Findings:
• CVE-2021-41773 on Apache 2.4.49 — path traversal → RCE
• SSL expiry in 12 days + HTTPS on port 443 — compound risk

Remediation:
Immediate: Patch Apache to 2.4.51+, renew SSL cert
This week: Add missing security headers (CSP, X-Frame-Options)

Unauthorized Scan (ArmorIQ Block)

You: "scan google.com"

āŒ BLOCKED by ArmorIQ Policy Gate
Target  : google.com
Reason  : Target not in authorized scope
Audit ID: AQ-0002
Logged  : platform.armoriq.ai/audit-logs

Audit Trail

You: "show audit log"

āœ… AQ-0001 | run_threat_analysis | testphp.vulnweb.com | ALLOW | gaohar@aynops.local
āŒ AQ-0002 | port_scan           | google.com          | BLOCK | gaohar@aynops.local

2 operations: 1 allowed, 1 blocked.
Full trail: platform.armoriq.ai

Deployment (Railway)

npm install -g @railway/cli
railway login
railway init
railway up

Set environment variables in Railway dashboard → Variables tab.
Never commit API keys to your repository.


Team

Unit313 — NeuroX Hackathon 2026

Member Role College
Gaohar Imran Team Lead Delhi University
Mohd Ali Team Member Maharaja Surajmal Institute of Technology

License

MIT — see LICENSE


<div align="center">

AynOps — because security intelligence shouldn't require a PhD in CLI tools.

⭐ Star this repo if you found it useful

</div>

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured