forked from AynOps/AynOps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp.json
More file actions
226 lines (226 loc) · 6.65 KB
/
Copy pathmcp.json
File metadata and controls
226 lines (226 loc) · 6.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
{
"name": "AynOps",
"version": "1.1.2",
"description": "A Model Context Protocol server that gives AI Clients real-time cybersecurity reconnaissance capabilities — WHOIS, DNS enumeration, port scanning, SSL inspection, CVE lookup, IP reputation, ASN lookup and more.",
"author": "Gaohar Imran",
"license": "MIT",
"homepage": "https://github.com/AynOps/AynOps",
"repository": {
"type": "git",
"url": "https://github.com/AynOps/AynOps"
},
"runtime": "python",
"runtime_version": ">=3.12",
"transport": [
"stdio"
],
"tools": [
{
"name": "whois_lookup",
"description": "Query domain registration data — owner, registrar, creation date, expiry, name servers",
"input": {
"domain": "string"
},
"requires_api_key": false
},
{
"name": "dns_enumeration",
"description": "A, AAAA, MX, NS, TXT, CNAME, SOA, CAA, and common SRV records (SIP, LDAP, XMPP, Kerberos, Autodiscover) + common subdomain brute-forcing",
"input": {
"domain": "string"
},
"requires_api_key": false
},
{
"name": "port_scan",
"description": "Nmap-powered port scanner with service and version detection",
"input": {
"target": "string",
"scan_type": "string",
"timeout": "integer"
},
"requires_api_key": false,
"requires_system_dependency": "nmap"
},
{
"name": "ssl_inspect",
"description": "Inspect SSL/TLS certificate — issuer, expiry, cipher, SANs, TLS version",
"input": {
"domain": "string",
"port": "integer"
},
"requires_api_key": false
},
{
"name": "headers_analyzer",
"description": "Analyze HTTP response security headers — checks HSTS, CSP, X-Frame-Options, and more with severity ratings and misconfiguration details",
"input": {
"domain": "string"
},
"requires_api_key": false
},
{
"name": "email_security_check",
"description": "Check SPF, DKIM, and DMARC DNS records for a domain to assess email anti-spoofing configuration",
"input": {
"domain": "string"
},
"requires_api_key": false
},
{
"name": "tech_stack_detect",
"description": "Fingerprint web server, CMS, CDN, and JS frameworks",
"input": {
"domain": "string"
},
"requires_api_key": false
},
{
"name": "cert_transparency",
"description": "Query crt.sh Certificate Transparency logs for a domain and extract certificate, subdomain, and wildcard information",
"input": {
"domain": "string"
},
"requires_api_key": false
},
{
"name": "asn_lookup",
"description": "Find ASN, BGP prefix, organization, registry and country for any IP or domain via Team Cymru WHOIS (no API key required)",
"input": {
"target": "string"
},
"requires_api_key": false
},
{
"name": "cve_lookup",
"description": "Search NVD database for known CVEs by software name and version",
"input": {
"software": "string",
"version": "string"
},
"requires_api_key": false
},
{
"name": "ip_reputation",
"description": "Check if an IP address is flagged as malicious via AbuseIPDB",
"input": {
"ip_address": "string"
},
"requires_api_key": true,
"api_key_env": "ABUSEIPDB_API_KEY",
"api_key_url": "https://www.abuseipdb.com"
},
{
"name": "cloud_exposure_check",
"description": "Checks for publicly accessible AWS S3, Azure Blob Storage, and Google Cloud Storage buckets from the target domain",
"input": {
"domain": "string"
},
"requires_api_key": false
},
{
"name": "full_recon",
"description": "Runs all core tools in parallel against a domain and returns combined results",
"input": {
"domain": "string"
},
"requires_api_key": false
},
{
"name": "trace_redirects",
"description": "Trace the full HTTP redirect chain for a URL hop by hop, flagging TLS downgrades, private-IP leaks, redirect loops, cross-domain hops, and overly long chains",
"input": {
"url": "string"
},
"requires_api_key": false
},
{
"name": "robots_txt_inspect",
"description": "Fetch and parse the robots.txt file for a given domain to reveal hidden directories and sitemaps",
"input": {
"domain": "string"
},
"requires_api_key": false
},
{
"name": "subdomain_takeover",
"description": "Check discovered subdomains for takeover vulnerabilities — resolves CNAMEs, matches known-vulnerable service fingerprints (GitHub Pages, Heroku, S3, Azure, Ghost, Shopify, Fastly), and confirms via an HTTP probe",
"input": {
"domain": "string"
},
"requires_api_key": false
},
{
"name": "hibp_check",
"description": "Check if an email or domain appears in Have I Been Pwned breach data (requires HIBP_API_KEY)",
"input": {
"query": "string"
},
"requires_api_key": true,
"api_key_env": "HIBP_API_KEY",
"api_key_url": "https://haveibeenpwned.com/API/Key"
}
],
"environment_variables": [
{
"name": "ABUSEIPDB_API_KEY",
"description": "Required for ip_reputation tool. Get free key at abuseipdb.com",
"required": false
},
{
"name": "HIBP_API_KEY",
"description": "Required for hibp_check tool. Get a key at haveibeenpwned.com",
"required": false
}
],
"installation": {
"steps": [
"git clone https://github.com/AynOps/AynOps.git",
"cd AynOps",
"python -m venv .venv",
"pip install -r requirements.txt",
"Install Nmap from nmap.org/download.html"
]
},
"claude_desktop_config": {
"mcpServers": {
"AynOps": {
"command": "C:\\full\\path\\to\\AynOps\\.venv\\Scripts\\python.exe",
"args": [
"C:\\full\\path\\to\\AynOps\\server.py"
],
"env": {
"ABUSEIPDB_API_KEY": "your-api-key-here",
"HIBP_API_KEY": "your-hibp-api-key-here"
}
}
}
},
"tags": [
"mcp",
"cybersecurity",
"reconnaissance",
"whois",
"osint",
"pentesting",
"network-security",
"web-security",
"dns",
"subdomain",
"nmap",
"port-scanning",
"ssl",
"tls",
"http",
"cve",
"vulnerability-assessment",
"threat-intelligence",
"cloud-security",
"email-security",
"ip-reputation",
"certificate-transparency",
"technology-detection",
"breach-intelligence"
],
"glama_url": "https://glama.ai/mcp/servers/gaoharimran29-glitch/AynOps"
}