mcp-aws-manager 0.1.0
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/LICENSE +21 -0
- package/MCP_CLIENT_SETUP.md +78 -0
- package/README.md +140 -0
- package/bin/mcp-aws-manager-mcp.js +550 -0
- package/bin/mcp-aws-manager.js +1160 -0
- package/package.json +41 -0
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mcp-aws-manager",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "AWS operations CLI and MCP server (currently discovery-focused) for EC2 public-IP inventory and PEM-based matching",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public",
|
|
8
|
+
"registry": "https://registry.npmjs.org/"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"mcp",
|
|
12
|
+
"model-context-protocol",
|
|
13
|
+
"aws",
|
|
14
|
+
"ec2",
|
|
15
|
+
"inventory",
|
|
16
|
+
"cli"
|
|
17
|
+
],
|
|
18
|
+
"bin": {
|
|
19
|
+
"mcp-aws-manager": "bin/mcp-aws-manager.js",
|
|
20
|
+
"mcp-aws-manager-mcp": "bin/mcp-aws-manager-mcp.js",
|
|
21
|
+
"mcp-aws-discover": "bin/mcp-aws-manager.js",
|
|
22
|
+
"mcp-aws-discover-mcp": "bin/mcp-aws-manager-mcp.js"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"bin",
|
|
26
|
+
"MCP_CLIENT_SETUP.md"
|
|
27
|
+
],
|
|
28
|
+
"engines": {
|
|
29
|
+
"node": ">=18"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@aws-sdk/client-ec2": "^3.848.0",
|
|
33
|
+
"@aws-sdk/client-sts": "^3.848.0",
|
|
34
|
+
"@aws-sdk/credential-providers": "^3.848.0",
|
|
35
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
36
|
+
"zod": "^4.3.6"
|
|
37
|
+
},
|
|
38
|
+
"optionalDependencies": {
|
|
39
|
+
"ssh2": "^1.15.0"
|
|
40
|
+
}
|
|
41
|
+
}
|