@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 CHANGED
@@ -6,12 +6,22 @@
6
6
  [![Python version](https://img.shields.io/badge/python-3.12+-blue.svg)](https://www.python.org/downloads/)
7
7
  [![MCP Protocol](https://img.shields.io/badge/MCP-Server-green.svg)](https://modelcontextprotocol.io/)
8
8
  [![Docker](https://img.shields.io/badge/docker-ready-blue.svg)](https://www.docker.com/)
9
+ [![npm version](https://img.shields.io/npm/v/@raghulm/aegis-mcp.svg)](https://www.npmjs.com/package/@raghulm/aegis-mcp)
10
+ [![npm downloads](https://img.shields.io/npm/dt/@raghulm/aegis-mcp.svg)](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
@@ -0,0 +1,2 @@
1
+ @echo off
2
+ node "%~dp0aegis-mcp.js" %*
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@raghulm/aegis-mcp",
3
- "version": "1.0.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": "git+https://github.com/raghulvj01/aegis-mcp.git"
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
+ }