mcp-aws-manager 0.1.0 → 0.1.1
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/MCP_CLIENT_SETUP.md +2 -2
- package/README.md +6 -14
- package/package.json +1 -1
package/MCP_CLIENT_SETUP.md
CHANGED
|
@@ -34,7 +34,7 @@ Use this when running directly from this repository.
|
|
|
34
34
|
After publishing/installing globally:
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
|
-
npm install -g
|
|
37
|
+
npm install -g mcp-aws-manager
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
Client config:
|
|
@@ -61,7 +61,7 @@ This can be useful for clients that support `npx` commands.
|
|
|
61
61
|
"args": [
|
|
62
62
|
"-y",
|
|
63
63
|
"-p",
|
|
64
|
-
"
|
|
64
|
+
"mcp-aws-manager",
|
|
65
65
|
"mcp-aws-manager-mcp"
|
|
66
66
|
]
|
|
67
67
|
}
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# mcp-aws-manager
|
|
2
2
|
|
|
3
3
|
AWS operations CLI and MCP server package (currently discovery-focused).
|
|
4
4
|
|
|
@@ -18,13 +18,14 @@ Current implementation focuses on:
|
|
|
18
18
|
## Install
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
npm install -g
|
|
21
|
+
npm install -g mcp-aws-manager
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
## Quick Start
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
Ensure AWS credentials/profile and a PEM file are available on your machine.
|
|
27
|
+
|
|
28
|
+
Run a CLI check (explicit PEM path(s) or auto-discovery from current folder):
|
|
28
29
|
|
|
29
30
|
```bash
|
|
30
31
|
# explicit PEM path
|
|
@@ -38,7 +39,7 @@ cd /path/that/contains/pem
|
|
|
38
39
|
mcp-aws-manager
|
|
39
40
|
```
|
|
40
41
|
|
|
41
|
-
|
|
42
|
+
For LLM clients, register the MCP command:
|
|
42
43
|
|
|
43
44
|
```json
|
|
44
45
|
{
|
|
@@ -129,12 +130,3 @@ These legacy commands are also available:
|
|
|
129
130
|
|
|
130
131
|
- `mcp-aws-discover`
|
|
131
132
|
- `mcp-aws-discover-mcp`
|
|
132
|
-
|
|
133
|
-
## Keywords
|
|
134
|
-
|
|
135
|
-
- `mcp`
|
|
136
|
-
- `model-context-protocol`
|
|
137
|
-
- `aws`
|
|
138
|
-
- `ec2`
|
|
139
|
-
- `inventory`
|
|
140
|
-
- `cli`
|
package/package.json
CHANGED