AynOps
AynOps extends Claude with real-time cybersecurity reconnaissance capabilities, enabling professional-grade security assessments directly through Claude Desktop.
WHOIS Lookup — Retrieve domain registration data including owner, registrar, creation/expiry dates, and name servers.
DNS Enumeration — Enumerate DNS records (A, AAAA, MX, NS, TXT, CNAME, SOA) and perform common subdomain brute-forcing.
Port Scanning — Run Nmap-powered scans with multiple modes: basic (top 100 ports), service/version detection, OS detection, full 65535-port scan, or vulnerability scripts.
SSL/TLS Inspection — Inspect certificate details including issuer, validity, SANs, cipher strength, and TLS version.
Tech Stack Detection — Identify a website's web server, CMS, JavaScript frameworks, CDN, analytics tools, and security header scoring.
CVE Lookup — Search the NVD for known CVEs by software name and version (no API key required).
IP Reputation Check — Verify if an IP has been reported as malicious via AbuseIPDB (requires a free API key).
Full Recon — Run all core tools (WHOIS, DNS, port scan, SSL inspection, tech stack detection) in parallel and receive a combined security analysis in one shot.
What is this?
Claude by default has zero native cybersecurity tooling. No WHOIS. No DNS enumeration. No port scanning. No SSL inspection.
This MCP server fixes that — extending Claude with real-world security tools that run live against any domain or IP. Reconnaissance that normally requires multiple specialized tools and 20+ minutes of manual work becomes a single prompt.
This is a local MCP server — it runs entirely on your machine. Your data never leaves your computer. It is also listed on glama mcp registry.
Tools Available
Tool | Description |
| Domain registration data — owner, registrar, creation date, expiry, name servers |
| A, AAAA, MX, NS, TXT, CNAME, SOA records + common subdomain brute-forcing |
| Nmap-powered scanner with service/version detection and security warnings |
| SSL/TLS certificate — issuer, expiry, cipher strength, SANs, TLS version |
| Web server, CMS, JS frameworks, CDN, analytics, and security header scoring |
| Search NVD for known CVEs by software name and version (no API key required) |
| Check if an IP is flagged as malicious via AbuseIPDB (api key requied) |
| Runs all 6 core tools in parallel and returns combined results for Claude to analyze |
| Autonomous System Number (ASN) and network ownership lookup — identifies hosting provider, ISP, organization, geolocation, and infrastructure ownership for domains or IP addresses |
📸 Demo
Single tool — CVE lookup
You: Look up CVEs for apache 2.4.49
Claude: Found 2 critical CVEs for Apache 2.4.49:
CVE-2021-41773 (Score: 9.8 CRITICAL) — Path traversal vulnerability
allowing remote code execution if CGI is enabled. Actively exploited
in the wild...Full recon
You: Do a complete security recon on reddit.com
Claude: [calls full_recon → runs 6 tools in parallel → delivers full analysis]📋 Prerequisites
Python 3.12+ — download
Claude Desktop — download
Nmap — required for port scanning (download)
Git — download
⚙️ Installation
Step 1 — Clone the repository
git clone https://github.com/gaoharimran29-glitch/AynOps
cd AynOpsStep 2 — Install Python dependencies
pip install -r requirements.txtStep 3 — Install Nmap
Windows:
Download from nmap.org/download.html and run the installer
Manually add Nmap to PATH:
Press
Win + S→ search "Environment Variables"Under System Variables → find Path → click Edit
Click New → add
C:\Program Files (x86)\NmapClick OK on all windows
Restart your terminal and verify:
nmap --versionMac:
brew install nmapLinux:
sudo apt install nmapStep 4 — Connect to Claude Desktop
Open your Claude Desktop config file:
OS | Path |
Windows |
|
Mac |
|
Linux |
|
Add this configuration:
Windows:
{
"mcpServers": {
"cybersecurity": {
"command": "C:\\full\\path\\to\\AynOps\\.venv\\Scripts\\python.exe",
"args": ["C:\\full\\path\\to\\AynOps\\main.py"],
"env": {
"ABUSEIPDB_API_KEY": "your-api-key-here",
"IP_API_KEY": "your-api-key-here"
}
}
}
}Mac/Linux:
{
"mcpServers": {
"cybersecurity": {
"command": "/full/path/to/AynOps/.venv/bin/python3",
"args": ["/full/path/to/AynOps/main.py"],
"env": {
"ABUSEIPDB_API_KEY": "your-api-key-here",
"IP_API_KEY": "your-api-key-here"
}
}
}
}⚠️ Always use the full absolute path to your
.venvPython executable — not justpythonorpython3. Claude Desktop may use a different Python installation otherwise.
Note:
ABUSEIPDB_API_KEYis only required for theip_reputationtool. Get a free key at abuseipdb.com (free tier: 1,000 requests/day).IP_API_KEYis only required for theasn_lookuptool. get a free key at ipapi.com
Step 5 — Restart Claude Desktop
Fully quit and reopen Claude Desktop — closing the window is not enough. Check the system task manager and quit from there.
Verify tools are connected by asking Claude:
What cybersecurity tools do you have available?Claude should list all 8 tools.
🚀 Usage
Basic tool usage
Do a WHOIS lookup on example.com
Run DNS enumeration on github.com
Scan ports on scanme.nmap.org
Inspect the SSL certificate of stripe.com
Detect the tech stack of wordpress.org
Look up CVEs for apache 2.4.49
Look up CVEs for log4j 2.14.1
Check the reputation of IP 1.2.3.4
ASN Lookup for google.comPort scan types
Type | Description | Speed |
| Top 100 ports | Fast (~5s) |
| Service & version detection | Medium (~15s) |
| OS detection (requires admin) | Medium |
| All 65535 ports | Slow (~5min) |
| Vulnerability scripts | Slow (~30s) |
Scan scanme.nmap.org with service detectionFull recon
Do a complete security recon on reddit.comClaude will run all 6 core tools in parallel and deliver a full security analysis.
Follow-up analysis
Based on the recon, what are the top security risks?
What do the open ports mean from an attacker's perspective?
Is this SSL configuration strong enough for a financial services company?
Cross-reference the open ports with known CVEs for the detected services.⚠️ Legal & Ethical Usage
Only scan domains and IPs you own or have explicit written permission to scan.
WHOIS, DNS, SSL, CVE, and tech stack lookups use public data — safe on any domain
Port scanning should only target your own infrastructure or authorized systems
The only public host officially permitted for Nmap testing is
scanme.nmap.orgUnauthorized port scanning may be illegal in your jurisdiction
Intended for:
Security researchers
Penetration testers (on authorized targets)
Developers auditing their own infrastructure
Students learning cybersecurity concepts
🗂️ Project Structure
├── .github/ # GitHub workflows, templates and assets
├── main.py # MCP server entry point
├── pyproject.toml # Project configuration
├── requirements.txt # Dependencies
├── glama.json # Glama MCP metadata
├── Dockerfile # Container image
├── SECURITY.md # Security policy
├── contributing.md # Contribution guidelines
└── README.md # README FileGlama MCP Scoring
🤝 Contributing
Pull requests are welcome! Check contributing.md for guidelines and a list of open issues ready to pick up.
📜 License
MIT License — free to use, modify, and distribute.
👤 Author
Built by Gaohar Imran
GitHub: @gaoharimran29-glitch
LinkedIn: Gaohar Imran
⭐ If this project helped you, consider giving it a star on GitHub!
Maintenance
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/gaoharimran29-glitch/AynOps'
If you have feedback or need assistance with the MCP directory API, please join our Discord server