mcp-aws-manager 0.3.5 → 0.3.6
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/AWS_SSO_SETUP_GUIDE.md +133 -0
- package/AWS_SSO_SETUP_GUIDE_KO.md +70 -0
- package/IMPLEMENTATION_INTEGRATIONS.md +38 -3
- package/MCP_CLIENT_SETUP.md +2 -0
- package/MCP_CLIENT_SETUP_KO.md +107 -0
- package/README.md +161 -88
- package/README_KO.md +115 -0
- package/bin/mcp-aws-manager-mcp.js +1097 -649
- package/bin/mcp-aws-manager.js +970 -27
- package/package.json +6 -2
- package/AGENT_GUIDANCE_LOOP_TEMPLATE_KO.md +0 -68
package/README.md
CHANGED
|
@@ -2,37 +2,54 @@
|
|
|
2
2
|
|
|
3
3
|
AWS operations CLI + MCP stdio server (SSM-first).
|
|
4
4
|
|
|
5
|
-
This package is not a plain AWS CLI wrapper.
|
|
5
|
+
This package orchestrates AWS operations (inventory/runtime/remediation) with a normalized output schema and `ACTION_REQUIRED` guidance. It is not a plain AWS CLI wrapper.
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
- SSM management/online status
|
|
9
|
-
- Optional runtime snapshot and SSM remediation
|
|
10
|
-
- Normalized output + `ACTION_REQUIRED` guidance for human-in-the-loop retries
|
|
11
|
-
|
|
12
|
-
Execution path is internal-only (AWS SDK + AWS CLI). It does not delegate runtime execution to external AWS management MCP backends.
|
|
13
|
-
|
|
14
|
-
## Binaries
|
|
15
|
-
|
|
16
|
-
- CLI: `mcp-aws-manager`
|
|
17
|
-
- MCP stdio server: `mcp-aws-manager-mcp`
|
|
18
|
-
|
|
19
|
-
## Install
|
|
7
|
+
## TL;DR
|
|
20
8
|
|
|
21
9
|
```bash
|
|
22
10
|
npm install -g mcp-aws-manager
|
|
11
|
+
mcp-aws-manager
|
|
12
|
+
mcp-aws-manager doctor
|
|
13
|
+
mcp-aws-manager discover --profiles default --no-progress
|
|
23
14
|
```
|
|
24
15
|
|
|
25
|
-
##
|
|
16
|
+
## What It Does
|
|
26
17
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
18
|
+
- Multi-service inventory: EC2, Lambda, ALB/NLB, ASG, RDS, ElastiCache, Route53
|
|
19
|
+
- SSM state visibility: managed/online status
|
|
20
|
+
- Optional runtime snapshot and SSM remediation
|
|
21
|
+
- Manual fallback mode: JSON/CSV server list + PEM SSH runtime snapshot (when AWS auth is unavailable)
|
|
22
|
+
- Human-in-the-loop retry flow via `ACTION_REQUIRED`
|
|
23
|
+
- Internal-only execution path (AWS SDK + AWS CLI)
|
|
24
|
+
|
|
25
|
+
## API Coverage Snapshot
|
|
26
|
+
|
|
27
|
+
- AWS API total: no fixed official single number, but the action surface is on the order of tens of thousands across services (and continuously expanding).
|
|
28
|
+
- Current implementation scope is not "all AWS APIs".
|
|
29
|
+
- AWS SDK service clients used: `9`
|
|
30
|
+
- AWS SDK operation calls used: `20`
|
|
31
|
+
- AWS CLI commands used: `1` (`aws sso login --profile <profile>`)
|
|
32
|
+
|
|
33
|
+
Current 20 AWS SDK operations:
|
|
34
|
+
|
|
35
|
+
- STS: `GetCallerIdentity`
|
|
36
|
+
- EC2: `DescribeRegions`, `DescribeInstances`, `StartInstances`, `StopInstances`, `RebootInstances`, `DescribeIamInstanceProfileAssociations`, `AssociateIamInstanceProfile`, `ReplaceIamInstanceProfileAssociation`
|
|
37
|
+
- SSM: `DescribeInstanceInformation`, `SendCommand`, `GetCommandInvocation`
|
|
38
|
+
- Lambda: `ListFunctions`
|
|
39
|
+
- ELBv2: `DescribeLoadBalancers`, `DescribeTargetGroups`
|
|
40
|
+
- Auto Scaling: `DescribeAutoScalingGroups`
|
|
41
|
+
- RDS: `DescribeDBInstances`
|
|
42
|
+
- ElastiCache: `DescribeCacheClusters`
|
|
43
|
+
- Route53: `ListHostedZones`, `ListResourceRecordSets`
|
|
30
44
|
|
|
31
|
-
|
|
45
|
+
## Binaries
|
|
46
|
+
|
|
47
|
+
- CLI: `mcp-aws-manager`
|
|
48
|
+
- MCP stdio server: `mcp-aws-manager-mcp`
|
|
32
49
|
|
|
33
50
|
## Agent-Assisted First-Time Setup
|
|
34
51
|
|
|
35
|
-
Use this
|
|
52
|
+
Use this flow for new users.
|
|
36
53
|
|
|
37
54
|
1. Install and bootstrap:
|
|
38
55
|
|
|
@@ -68,62 +85,124 @@ mcp-aws-manager discover --profiles default --no-progress
|
|
|
68
85
|
|
|
69
86
|
If blocked, follow one `ACTION_REQUIRED` item, then retry the same command.
|
|
70
87
|
|
|
88
|
+
If AWS auth is not available, use manual fallback:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
mcp-aws-manager discover --manual-server-list ./servers.csv --pem-paths C:\keys\prod.pem --no-progress
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
Generate GUI report (interactive HTML):
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
mcp-aws-manager discover --profiles default --html-out ./inventory.html --no-progress
|
|
98
|
+
```
|
|
99
|
+
|
|
71
100
|
## User Confirmation Required
|
|
72
101
|
|
|
73
|
-
These are
|
|
102
|
+
These are normally the only manual steps (agent-guided):
|
|
74
103
|
|
|
75
104
|
- SSO browser login and MFA confirmation
|
|
76
105
|
- IAM permission approval in organization account
|
|
77
106
|
- For EC2 runtime visibility: attach `AmazonSSMManagedInstanceCore` and keep SSM Agent/network healthy
|
|
78
107
|
|
|
79
|
-
##
|
|
108
|
+
## MCP Tool Usage
|
|
80
109
|
|
|
81
|
-
|
|
82
|
-
- AWS credentials on the host where CLI/MCP runs:
|
|
83
|
-
- SSO: `aws configure sso --profile <profile>` then `aws sso login --profile <profile>`
|
|
84
|
-
- Access key: `aws configure --profile <profile>`
|
|
85
|
-
- Verify auth:
|
|
86
|
-
- `aws sts get-caller-identity --profile <profile>`
|
|
87
|
-
- Runtime snapshot permissions:
|
|
88
|
-
- `ssm:SendCommand`, `ssm:GetCommandInvocation`, `ssm:DescribeInstanceInformation`
|
|
89
|
-
- Auto-remediation permissions:
|
|
90
|
-
- `ec2:AssociateIamInstanceProfile`
|
|
91
|
-
- optional `ec2:ReplaceIamInstanceProfileAssociation`
|
|
92
|
-
- `iam:PassRole`
|
|
110
|
+
Run MCP server:
|
|
93
111
|
|
|
94
|
-
|
|
112
|
+
```bash
|
|
113
|
+
mcp-aws-manager-mcp
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
Exposed MCP tools:
|
|
95
117
|
|
|
96
|
-
-
|
|
97
|
-
-
|
|
98
|
-
-
|
|
118
|
+
- `discover_ec2_with_ssm`
|
|
119
|
+
- `ec2_start_instances`
|
|
120
|
+
- `ec2_stop_instances`
|
|
121
|
+
- `ec2_reboot_instances`
|
|
122
|
+
- `ec2_apply_instance_profile`
|
|
123
|
+
- `mcp_aws_discover_cli_help`
|
|
124
|
+
|
|
125
|
+
Mutation tool examples:
|
|
126
|
+
|
|
127
|
+
- `ec2_start_instances`: `{ "profile": "default", "region": "ap-southeast-1", "instanceIds": ["i-123"] }`
|
|
128
|
+
- `ec2_stop_instances`: `{ "profile": "default", "region": "ap-southeast-1", "instanceIds": ["i-123"], "force": false }`
|
|
129
|
+
- `ec2_reboot_instances`: `{ "profile": "default", "region": "ap-southeast-1", "instanceIds": ["i-123"] }`
|
|
130
|
+
- `ec2_apply_instance_profile`: `{ "profile": "default", "region": "ap-southeast-1", "instanceId": "i-123", "instanceProfileName": "my-ssm-profile", "allowReplaceProfile": true }`
|
|
131
|
+
|
|
132
|
+
Example tool args:
|
|
99
133
|
|
|
100
|
-
|
|
134
|
+
```json
|
|
135
|
+
{
|
|
136
|
+
"profiles": ["default"],
|
|
137
|
+
"regions": ["ap-northeast-2"],
|
|
138
|
+
"includeLambda": true,
|
|
139
|
+
"publicOnly": true,
|
|
140
|
+
"runtimeSnapshot": true,
|
|
141
|
+
"htmlOutPath": "C:\\tmp\\inventory.html",
|
|
142
|
+
"openHtml": true,
|
|
143
|
+
"manualServerListPath": "C:\\tmp\\servers.csv",
|
|
144
|
+
"pemPaths": ["C:\\keys\\prod.pem"],
|
|
145
|
+
"sshUser": "ec2-user",
|
|
146
|
+
"sshPort": 22,
|
|
147
|
+
"sshConnectTimeoutSec": 8,
|
|
148
|
+
"autoSsoLogin": true,
|
|
149
|
+
"noProgress": true
|
|
150
|
+
}
|
|
151
|
+
```
|
|
101
152
|
|
|
102
|
-
|
|
103
|
-
- `mcp-aws-manager setup`: register/re-register MCP server
|
|
104
|
-
- `mcp-aws-manager doctor`: check install/registration/auth readiness
|
|
105
|
-
- `mcp-aws-manager discover ...`: run inventory/runtime workflow
|
|
153
|
+
## Action Codes
|
|
106
154
|
|
|
107
|
-
|
|
155
|
+
Common `ACTION_REQUIRED` codes:
|
|
156
|
+
|
|
157
|
+
- `SSO_LOGIN_NEEDED`
|
|
158
|
+
- `AWS_CREDENTIALS_REQUIRED`
|
|
159
|
+
- `IAM_PERMISSION_REQUIRED`
|
|
160
|
+
- `AWS_OPERATION_FAILED`
|
|
161
|
+
- `SSM_ROLE_OR_AGENT_REQUIRED`
|
|
162
|
+
- `INSTANCE_HAS_PROFILE`
|
|
163
|
+
- `IAM_PROFILE_ASSOCIATION_FAILED`
|
|
164
|
+
- `SSM_RUNCOMMAND_PERMISSION_REQUIRED`
|
|
165
|
+
- `LAMBDA_LIST_PERMISSION_REQUIRED`
|
|
166
|
+
- `ELBV2_LIST_PERMISSION_REQUIRED`
|
|
167
|
+
- `ASG_LIST_PERMISSION_REQUIRED`
|
|
168
|
+
- `RDS_LIST_PERMISSION_REQUIRED`
|
|
169
|
+
- `ELASTICACHE_LIST_PERMISSION_REQUIRED`
|
|
170
|
+
- `ROUTE53_LIST_PERMISSION_REQUIRED`
|
|
171
|
+
- `MANUAL_SERVER_LIST_EMPTY`
|
|
172
|
+
- `MANUAL_SERVER_HOST_REQUIRED`
|
|
173
|
+
- `PEM_KEY_NOT_FOUND`
|
|
174
|
+
- `PEM_MAPPING_REQUIRED`
|
|
175
|
+
- `SSH_CLIENT_NOT_FOUND`
|
|
176
|
+
- `SSH_AUTH_OR_CONNECT_FAILED`
|
|
177
|
+
|
|
178
|
+
<details>
|
|
179
|
+
<summary>Detailed AWS Auth Setup (SSO vs Access Key)</summary>
|
|
180
|
+
|
|
181
|
+
SSO is recommended because:
|
|
182
|
+
|
|
183
|
+
- Avoids long-lived access keys on user machines
|
|
184
|
+
- Enforces session-based login and MFA more easily
|
|
185
|
+
- Improves centralized revoke/audit handling
|
|
186
|
+
|
|
187
|
+
SSO setup:
|
|
108
188
|
|
|
109
189
|
```bash
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
mcp-aws-manager discover --profiles default --include-lambda
|
|
114
|
-
mcp-aws-manager discover --profiles default --include-alb --include-asg --include-rds --include-elasticache --include-route53
|
|
115
|
-
mcp-aws-manager discover --profiles default --public-only
|
|
116
|
-
mcp-aws-manager discover --profiles default --runtime-snapshot
|
|
117
|
-
mcp-aws-manager discover --profiles default --auto-remediate-ssm --ssm-instance-profile-name MySsmInstanceProfile
|
|
190
|
+
aws configure sso --profile default
|
|
191
|
+
aws sso login --profile default
|
|
192
|
+
aws sts get-caller-identity --profile default
|
|
118
193
|
```
|
|
119
194
|
|
|
120
|
-
|
|
195
|
+
Access key setup (optional):
|
|
121
196
|
|
|
122
197
|
```bash
|
|
123
|
-
|
|
198
|
+
aws configure --profile default
|
|
199
|
+
aws sts get-caller-identity --profile default
|
|
124
200
|
```
|
|
125
201
|
|
|
126
|
-
|
|
202
|
+
</details>
|
|
203
|
+
|
|
204
|
+
<details>
|
|
205
|
+
<summary>Discover Option Reference</summary>
|
|
127
206
|
|
|
128
207
|
- `--profiles <a,b,c>`
|
|
129
208
|
- `--regions <a,b,c>`
|
|
@@ -144,52 +223,46 @@ mcp-aws-manager --profiles default --public-only
|
|
|
144
223
|
- `--snapshot-timeout <seconds>`
|
|
145
224
|
- `--snapshot-concurrency <n>`
|
|
146
225
|
- `--snapshot-max-kb <n>`
|
|
226
|
+
- `--manual-server-list <path>` (JSON/CSV)
|
|
227
|
+
- `--pem-paths <a,b,c>`
|
|
228
|
+
- `--ssh-user <name>`
|
|
229
|
+
- `--ssh-port <port>`
|
|
230
|
+
- `--ssh-connect-timeout <seconds>`
|
|
231
|
+
- `--html-out <path>`
|
|
232
|
+
- `--open-html`
|
|
147
233
|
- `--auto-sso-login` / `--no-auto-sso-login`
|
|
148
234
|
- `--format <json|csv>`
|
|
149
235
|
- `--out <path>`
|
|
150
236
|
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
Run MCP server:
|
|
154
|
-
|
|
155
|
-
```bash
|
|
156
|
-
mcp-aws-manager-mcp
|
|
157
|
-
```
|
|
237
|
+
</details>
|
|
158
238
|
|
|
159
|
-
|
|
239
|
+
<details>
|
|
240
|
+
<summary>Permission Checklist</summary>
|
|
160
241
|
|
|
161
|
-
|
|
162
|
-
- `mcp_aws_discover_cli_help`
|
|
242
|
+
Minimum permissions depend on enabled features.
|
|
163
243
|
|
|
164
|
-
|
|
244
|
+
- Core inventory: `ec2:DescribeRegions`, `ec2:DescribeInstances`
|
|
245
|
+
- Lambda: `lambda:ListFunctions`
|
|
246
|
+
- ALB/TargetGroups: `elasticloadbalancing:DescribeLoadBalancers`, `elasticloadbalancing:DescribeTargetGroups`
|
|
247
|
+
- ASG: `autoscaling:DescribeAutoScalingGroups`
|
|
248
|
+
- RDS: `rds:DescribeDBInstances`
|
|
249
|
+
- ElastiCache: `elasticache:DescribeCacheClusters`
|
|
250
|
+
- Route53: `route53:ListHostedZones`, `route53:ListResourceRecordSets`
|
|
251
|
+
- Runtime snapshot: `ssm:SendCommand`, `ssm:GetCommandInvocation`, `ssm:DescribeInstanceInformation`
|
|
252
|
+
- Auto-remediation: `ec2:AssociateIamInstanceProfile`, optional `ec2:ReplaceIamInstanceProfileAssociation`, `iam:PassRole`
|
|
165
253
|
|
|
166
|
-
|
|
167
|
-
{
|
|
168
|
-
"profiles": ["default"],
|
|
169
|
-
"regions": ["ap-northeast-2"],
|
|
170
|
-
"includeLambda": true,
|
|
171
|
-
"publicOnly": true,
|
|
172
|
-
"runtimeSnapshot": true,
|
|
173
|
-
"autoSsoLogin": true,
|
|
174
|
-
"noProgress": true
|
|
175
|
-
}
|
|
176
|
-
```
|
|
254
|
+
Manual fallback mode:
|
|
177
255
|
|
|
178
|
-
|
|
256
|
+
- Inventory uses user-provided server list file (no AWS API required)
|
|
257
|
+
- Runtime snapshot uses local `ssh` client + PEM key access
|
|
179
258
|
|
|
180
|
-
|
|
181
|
-
- `SSM_ROLE_OR_AGENT_REQUIRED`
|
|
182
|
-
- `IAM_PROFILE_ASSOCIATION_FAILED`
|
|
183
|
-
- `SSM_RUNCOMMAND_PERMISSION_REQUIRED`
|
|
184
|
-
- `LAMBDA_LIST_PERMISSION_REQUIRED`
|
|
185
|
-
- `ELBV2_LIST_PERMISSION_REQUIRED`
|
|
186
|
-
- `ASG_LIST_PERMISSION_REQUIRED`
|
|
187
|
-
- `RDS_LIST_PERMISSION_REQUIRED`
|
|
188
|
-
- `ELASTICACHE_LIST_PERMISSION_REQUIRED`
|
|
189
|
-
- `ROUTE53_LIST_PERMISSION_REQUIRED`
|
|
259
|
+
</details>
|
|
190
260
|
|
|
191
261
|
## Related Docs
|
|
192
262
|
|
|
263
|
+
- `README_KO.md`: Korean overview and quick start
|
|
264
|
+
- `MCP_CLIENT_SETUP_KO.md`: Korean MCP client registration guide
|
|
265
|
+
- `AWS_SSO_SETUP_GUIDE_KO.md`: Korean AWS auth setup guide
|
|
193
266
|
- `MCP_CLIENT_SETUP.md`: MCP registration and stdio config details
|
|
194
267
|
- `AGENT_GUIDANCE_LOOP_TEMPLATE_KO.md`: agent retry/guidance template
|
|
195
268
|
- `IMPLEMENTATION_INTEGRATIONS.md`: API/CLI integration inventory
|
package/README_KO.md
ADDED
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
# mcp-aws-manager (한국어 안내)
|
|
2
|
+
|
|
3
|
+
AWS 운영 작업용 CLI + MCP stdio 서버입니다.
|
|
4
|
+
|
|
5
|
+
이 패키지는 AWS 인벤토리/런타임/완화 작업을 정규화된 출력 스키마와 `ACTION_REQUIRED` 가이드로 제공합니다. 단순 AWS CLI 래퍼가 아니라, 에이전트 친화적인 운영 워크플로우를 목표로 합니다.
|
|
6
|
+
|
|
7
|
+
## 빠른 시작
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g mcp-aws-manager
|
|
11
|
+
mcp-aws-manager
|
|
12
|
+
mcp-aws-manager doctor
|
|
13
|
+
mcp-aws-manager discover --profiles default --no-progress
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## 핵심 기능
|
|
17
|
+
|
|
18
|
+
- 멀티 서비스 인벤토리: EC2, Lambda, ALB/NLB, ASG, RDS, ElastiCache, Route53
|
|
19
|
+
- SSM 상태 확인: managed/online
|
|
20
|
+
- 런타임 스냅샷(선택), SSM 완화(선택)
|
|
21
|
+
- AWS 인증이 안 될 때 수동 모드: JSON/CSV 서버 목록 + PEM SSH
|
|
22
|
+
- GUI 리포트 생성: `--html-out` (검색/필터/CSV 다운로드 버튼 포함)
|
|
23
|
+
- 사람이 개입해야 할 상황을 `ACTION_REQUIRED`로 표준화
|
|
24
|
+
|
|
25
|
+
## 바이너리
|
|
26
|
+
|
|
27
|
+
- CLI: `mcp-aws-manager`
|
|
28
|
+
- MCP stdio server: `mcp-aws-manager-mcp`
|
|
29
|
+
|
|
30
|
+
## 최초 설정(권장 흐름)
|
|
31
|
+
|
|
32
|
+
1. 설치 및 부트스트랩
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
npm.cmd install -g mcp-aws-manager@latest
|
|
36
|
+
mcp-aws-manager
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
2. 상태 확인
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
mcp-aws-manager doctor
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
3. AWS 인증 설정(권장: SSO)
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
aws configure sso --profile default
|
|
49
|
+
aws sso login --profile default
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
4. 인증 확인
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
aws sts get-caller-identity --profile default
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
5. 인벤토리 실행
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
mcp-aws-manager discover --profiles default --no-progress
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## 인증 불가 시 수동 모드
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
mcp-aws-manager discover --manual-server-list ./servers.csv --pem-paths C:\keys\prod.pem --no-progress
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## GUI 리포트
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
mcp-aws-manager discover --profiles default --html-out ./inventory.html --open-html --no-progress
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
- `--html-out <path>`: 인터랙티브 HTML 리포트 생성
|
|
77
|
+
- `--open-html`: 생성 후 브라우저 자동 오픈 시도
|
|
78
|
+
- GUI에서 현재 뷰 기준 CSV 다운로드 가능
|
|
79
|
+
|
|
80
|
+
## MCP 도구
|
|
81
|
+
|
|
82
|
+
조회:
|
|
83
|
+
|
|
84
|
+
- `discover_ec2_with_ssm`
|
|
85
|
+
- `mcp_aws_discover_cli_help`
|
|
86
|
+
|
|
87
|
+
변경:
|
|
88
|
+
|
|
89
|
+
- `ec2_start_instances`
|
|
90
|
+
- `ec2_stop_instances`
|
|
91
|
+
- `ec2_reboot_instances`
|
|
92
|
+
- `ec2_apply_instance_profile`
|
|
93
|
+
|
|
94
|
+
예시:
|
|
95
|
+
|
|
96
|
+
- `ec2_start_instances`: `{ "profile": "default", "region": "ap-southeast-1", "instanceIds": ["i-123"] }`
|
|
97
|
+
- `ec2_apply_instance_profile`: `{ "profile": "default", "region": "ap-southeast-1", "instanceId": "i-123", "instanceProfileName": "my-ssm-profile", "allowReplaceProfile": true }`
|
|
98
|
+
|
|
99
|
+
## 자주 쓰는 ACTION_REQUIRED
|
|
100
|
+
|
|
101
|
+
- 인증: `SSO_LOGIN_NEEDED`, `AWS_CREDENTIALS_REQUIRED`
|
|
102
|
+
- 권한: `IAM_PERMISSION_REQUIRED`, `AWS_OPERATION_FAILED`
|
|
103
|
+
- SSM/런타임: `SSM_ROLE_OR_AGENT_REQUIRED`, `SSM_RUNCOMMAND_PERMISSION_REQUIRED`
|
|
104
|
+
- 수동 모드: `MANUAL_SERVER_LIST_EMPTY`, `MANUAL_SERVER_HOST_REQUIRED`, `PEM_KEY_NOT_FOUND`, `PEM_MAPPING_REQUIRED`, `SSH_CLIENT_NOT_FOUND`
|
|
105
|
+
|
|
106
|
+
## 한국어 관련 문서
|
|
107
|
+
|
|
108
|
+
- `MCP_CLIENT_SETUP_KO.md`
|
|
109
|
+
- `AWS_SSO_SETUP_GUIDE_KO.md`
|
|
110
|
+
|
|
111
|
+
## 원문(영문) 문서
|
|
112
|
+
|
|
113
|
+
- `README.md`
|
|
114
|
+
- `MCP_CLIENT_SETUP.md`
|
|
115
|
+
- `AWS_SSO_SETUP_GUIDE.md`
|