@raghulm/aegis-mcp 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -0
- package/bin/aegis-mcp.cmd +2 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -6,12 +6,22 @@
|
|
|
6
6
|
[](https://www.python.org/downloads/)
|
|
7
7
|
[](https://modelcontextprotocol.io/)
|
|
8
8
|
[](https://www.docker.com/)
|
|
9
|
+
[](https://www.npmjs.com/package/@raghulm/aegis-mcp)
|
|
10
|
+
[](https://www.npmjs.com/package/@raghulm/aegis-mcp)
|
|
9
11
|
</div>
|
|
10
12
|
|
|
11
13
|
---
|
|
12
14
|
|
|
13
15
|
**Aegis MCP Server** empowers AI assistants (like Claude, Cursor, and GitHub Copilot) to perform cloud architecture administration, security scanning, and network analyses directly from their execution environments. It wraps powerful underlying tools and SDKs into secure, audited MCP tool sets.
|
|
14
16
|
|
|
17
|
+
### Quick Start
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npx @raghulm/aegis-mcp
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
That's it! The installer will check Python, clone the repo, set up dependencies, and print your MCP config.
|
|
24
|
+
|
|
15
25
|
---
|
|
16
26
|
|
|
17
27
|
## 📸 Demo in Action
|
|
@@ -154,6 +164,8 @@ npx @raghulm/aegis-mcp --config # Print MCP config JSON only
|
|
|
154
164
|
npx @raghulm/aegis-mcp --help # Show all options
|
|
155
165
|
```
|
|
156
166
|
|
|
167
|
+
> 💡 **Tip:** After running `npx @raghulm/aegis-mcp`, copy the printed MCP config into your AI agent's config file (Claude Desktop, Cursor, Windsurf, etc.)
|
|
168
|
+
|
|
157
169
|
---
|
|
158
170
|
|
|
159
171
|
### Prerequisites
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@raghulm/aegis-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "🛡️ Open-source DevSecOps MCP server — gives AI agents real hands in your cloud infrastructure",
|
|
5
5
|
"homepage": "https://github.com/raghulvj01/aegis-mcp",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "
|
|
8
|
+
"url": "https://github.com/raghulvj01/aegis-mcp.git"
|
|
9
9
|
},
|
|
10
10
|
"bugs": {
|
|
11
11
|
"url": "https://github.com/raghulvj01/aegis-mcp/issues"
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"cloud-security"
|
|
29
29
|
],
|
|
30
30
|
"bin": {
|
|
31
|
-
"aegis-mcp": "bin/aegis-mcp.js"
|
|
31
|
+
"aegis-mcp": "./bin/aegis-mcp.js"
|
|
32
32
|
},
|
|
33
33
|
"engines": {
|
|
34
34
|
"node": ">=16.0.0"
|
|
@@ -36,4 +36,4 @@
|
|
|
36
36
|
"files": [
|
|
37
37
|
"bin/"
|
|
38
38
|
]
|
|
39
|
-
}
|
|
39
|
+
}
|