mcp-aws-manager 0.3.3 → 0.3.4
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/IMPLEMENTATION_INTEGRATIONS.md +0 -1
- package/MCP_CLIENT_SETUP.md +0 -1
- package/README.md +1 -5
- package/bin/mcp-aws-manager-mcp.js +0 -7
- package/package.json +1 -1
package/MCP_CLIENT_SETUP.md
CHANGED
|
@@ -8,7 +8,6 @@ This project provides an MCP stdio wrapper around the SSM-first AWS operations C
|
|
|
8
8
|
Exposed MCP tools:
|
|
9
9
|
|
|
10
10
|
- `discover_ec2_with_ssm` (primary, multi-service inventory + SSM runtime)
|
|
11
|
-
- `discover_public_ec2_with_pem` (compatibility alias, same behavior)
|
|
12
11
|
- `mcp_aws_discover_cli_help`
|
|
13
12
|
|
|
14
13
|
## Recommended (Install Once)
|
package/README.md
CHANGED
|
@@ -48,8 +48,4 @@ For first-time users, follow the agent-assisted onboarding flow in `USAGE_GUIDE.
|
|
|
48
48
|
- MCP client registration and stdio config: `MCP_CLIENT_SETUP.md`
|
|
49
49
|
- Agent retry/guidance loop template: `AGENT_GUIDANCE_LOOP_TEMPLATE_KO.md`
|
|
50
50
|
- Implementation APIs/CLI wiring: `IMPLEMENTATION_INTEGRATIONS.md`
|
|
51
|
-
- Positioning vs existing AWS MCPs: `MCP_DIFFERENTIATION.md`
|
|
52
|
-
|
|
53
|
-
## Differentiation
|
|
54
|
-
|
|
55
|
-
This project does not delegate runtime execution to other AWS management MCP servers.
|
|
51
|
+
- Positioning vs existing AWS MCPs: `MCP_DIFFERENTIATION.md`
|
|
@@ -657,13 +657,6 @@ async function registerTools(server) {
|
|
|
657
657
|
"Runs mcp-aws-manager and returns inventory across EC2/Lambda/ALB/ASG/RDS/ElastiCache/Route53 with optional SSM runtime snapshots."
|
|
658
658
|
);
|
|
659
659
|
|
|
660
|
-
registerDiscoverTool(
|
|
661
|
-
server,
|
|
662
|
-
"discover_public_ec2_with_pem",
|
|
663
|
-
"Discover AWS Inventory (compat alias)",
|
|
664
|
-
"Compatibility alias. Internally runs the same multi-service discovery flow."
|
|
665
|
-
);
|
|
666
|
-
|
|
667
660
|
server.registerTool(
|
|
668
661
|
"mcp_aws_discover_cli_help",
|
|
669
662
|
{
|
package/package.json
CHANGED