-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
3576 lines (3576 loc) · 154 KB
/
Copy pathpackage.json
File metadata and controls
3576 lines (3576 loc) · 154 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "awsflow",
"displayName": "Awsflow: AWS AI Assistant",
"description": "Let AI access AWS services and work for you",
"version": "1.0.7",
"publisher": "NecatiARSLAN",
"repository": {
"type": "git",
"url": "https://github.com/necatiarslan/awsflow"
},
"icon": "media/extension/extension-icon.png",
"engines": {
"vscode": "^1.104.0"
},
"categories": [
"Other",
"AI",
"Chat",
"Testing",
"Programming Languages",
"Snippets"
],
"keywords": [
"cloud",
"aws",
"mcp",
"ai",
"copilot",
"awsflow",
"coding",
"agent"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"bin": {
"awsflow-mcp": "./out/mcp/cli.js"
},
"contributes": {
"chatParticipants": [
{
"id": "awsflow.chat",
"name": "aws",
"fullName": "Awsflow",
"description": "Access AWS services through chat",
"isSticky": true
}
],
"languageModelTools": [
{
"name": "APIGatewayTool",
"toolReferenceName": "APIGatewayTool",
"displayName": "API Gateway Tool",
"modelDescription": "Full lifecycle management of API Gateway REST APIs, resources, methods, deployments, stages, authorizers, API keys, usage plans, and custom domains. Includes CreateRestApi, CreateResource, PutMethod, CreateDeployment, CreateStage, CreateAuthorizer, CreateApiKey, CreateUsagePlan, CreateDomainName, ImportRestApi, DeleteRestApi, DeleteResource, DeleteMethod, DeleteStage, DeleteAuthorizer, DeleteApiKey, DeleteUsagePlan, DeleteDomainName, UpdateRestApi, UpdateStage, TagResource, UntagResource, plus all read and test operations.",
"userDescription": "Create, configure, deploy, and test API Gateway REST APIs and resources",
"tags": [
"aws",
"api-gateway",
"api",
"rest",
"gateway"
],
"icon": "$(globe)",
"canBeReferencedInPrompt": true,
"inputSchema": {
"type": "object",
"required": [
"command",
"params"
],
"properties": {
"command": {
"type": "string",
"enum": [
"GetAccount",
"GetApiKey",
"GetApiKeys",
"GetAuthorizer",
"GetAuthorizers",
"GetBasePathMapping",
"GetBasePathMappings",
"GetClientCertificate",
"GetClientCertificates",
"GetDeployment",
"GetDeployments",
"GetDocumentationPart",
"GetDocumentationParts",
"GetDocumentationVersion",
"GetDocumentationVersions",
"GetDomainName",
"GetDomainNames",
"GetExport",
"GetGatewayResponse",
"GetGatewayResponses",
"GetIntegration",
"GetIntegrationResponse",
"GetMethod",
"GetMethodResponse",
"GetModel",
"GetModels",
"GetRequestValidator",
"GetRequestValidators",
"GetResource",
"GetResources",
"GetRestApi",
"GetRestApis",
"GetSdk",
"GetSdkType",
"GetSdkTypes",
"GetStage",
"GetStages",
"GetTags",
"GetUsage",
"GetUsagePlan",
"GetUsagePlanKey",
"GetUsagePlanKeys",
"GetUsagePlans",
"GetVpcLink",
"GetVpcLinks",
"TestInvokeAuthorizer",
"TestInvokeMethod",
"CreateRestApi",
"CreateResource",
"PutMethod",
"CreateDeployment",
"CreateStage",
"CreateAuthorizer",
"CreateApiKey",
"CreateUsagePlan",
"CreateDomainName",
"ImportRestApi",
"DeleteRestApi",
"DeleteResource",
"DeleteMethod",
"DeleteStage",
"DeleteAuthorizer",
"DeleteApiKey",
"DeleteUsagePlan",
"DeleteDomainName",
"UpdateRestApi",
"UpdateStage",
"TagResource",
"UntagResource"
],
"description": "The API Gateway command to execute"
},
"params": {
"type": "object",
"description": "REQUIRED parameters object. Always include this even if empty. Use native API Gateway field names (e.g., restApiId, resourceId, httpMethod, limit, position).",
"properties": {
"restApiId": {
"type": "string",
"description": "REST API identifier (Used by: GetAuthorizers (Required), GetBasePathMappings (Required), GetDeployments (Required), GetDocumentationParts (Required), GetDocumentationVersions (Required), GetGatewayResponses (Required), GetModels (Required), GetRequestValidators (Required), GetResources (Required), GetRestApi (Required), GetStages (Required))"
},
"resourceId": {
"type": "string",
"description": "Resource ID (Used by: GetIntegration (Required), GetIntegrationResponse (Required), GetMethod (Required), GetResource (Required))"
},
"httpMethod": {
"type": "string",
"description": "HTTP method (Used by: GetIntegration (Required), GetIntegrationResponse (Required), GetMethod (Required))"
},
"usagePlanId": {
"type": "string",
"description": "Usage plan ID (Used by: GetUsagePlan (Required), GetUsagePlanKey (Required), GetUsagePlanKeys (Required))"
},
"keyId": {
"type": "string",
"description": "Usage plan key ID (Used by: GetUsagePlanKey (Required), GetUsagePlanKeys (Required))"
},
"domainName": {
"type": "string",
"description": "Custom domain name (Used by: GetDomainName (Required), GetBasePathMappings (Required), GetBasePathMapping (Required))"
},
"stageName": {
"type": "string",
"description": "Stage name (Used by: GetStage (Required))"
},
"position": {
"type": "string",
"description": "Pagination position token (Used by: GetApiKeys, GetAuthorizers, GetBasePathMappings, GetClientCertificates, GetDeployments, GetDocumentationParts, GetDocumentationVersions, GetDomainNames, GetModels, GetRequestValidators, GetResources, GetRestApis, GetStages, GetUsagePlanKeys, GetUsagePlans, GetVpcLinks)"
},
"limit": {
"type": "number",
"description": "Maximum results for list operations (Used by: GetApiKeys, GetAuthorizers, GetBasePathMappings, GetClientCertificates, GetDeployments, GetDocumentationParts, GetDocumentationVersions, GetDomainNames, GetModels, GetRequestValidators, GetResources, GetRestApis, GetStages, GetUsagePlanKeys, GetUsagePlans, GetVpcLinks)"
},
"name": {
"type": "string",
"description": "Common name filter (Used by: GetApiKeys, GetRestApis)"
},
"includeCredentials": {
"type": "boolean",
"description": "Whether to include credentials (Used by: GetExport)"
},
"authorizerId": {
"type": "string",
"description": "Authorizer ID (Used by: GetAuthorizer (Required), TestInvokeAuthorizer (Required))"
},
"headers": {
"type": "object",
"description": "Request headers for test invocation (Used by: TestInvokeMethod, TestInvokeAuthorizer)"
},
"multiValueHeaders": {
"type": "object",
"description": "Multi-value headers for test invocation (Used by: TestInvokeMethod, TestInvokeAuthorizer)"
},
"pathWithQueryString": {
"type": "string",
"description": "Path with query string for test invocation (Used by: TestInvokeMethod, TestInvokeAuthorizer)"
},
"body": {
"type": "string",
"description": "Request body for test invocation (Used by: TestInvokeMethod, TestInvokeAuthorizer)"
},
"stageVariables": {
"type": "object",
"description": "Stage variables for test invocation (Used by: TestInvokeMethod, TestInvokeAuthorizer)"
},
"additionalContext": {
"type": "object",
"description": "Additional context for authorizer test (Used by: TestInvokeAuthorizer)"
},
"statusCode": {
"type": "string",
"description": "Status code for GetMethodResponse (Used by: GetMethodResponse (Required))"
}
}
}
}
}
},
{
"name": "CloudFormationTool",
"toolReferenceName": "CloudFormationTool",
"displayName": "CloudFormation Tool",
"modelDescription": "Execute AWS CloudFormation describe, list, get, and drift detection commands. ALWAYS provide params object.",
"userDescription": "Inspect stacks, resources, changesets, types, and drift",
"tags": [
"aws",
"cloudformation",
"stacks",
"infrastructure"
],
"icon": "$(tools)",
"canBeReferencedInPrompt": true,
"inputSchema": {
"type": "object",
"required": [
"command",
"params"
],
"properties": {
"command": {
"type": "string",
"enum": [
"BatchDescribeTypeConfigurations",
"DescribeAccountLimits",
"DescribeChangeSet",
"DescribeChangeSetHooks",
"DescribeGeneratedTemplate",
"DescribeOrganizationsAccess",
"DescribePublisher",
"DescribeResourceScan",
"DescribeStackDriftDetectionStatus",
"DescribeStackEvents",
"DescribeStackInstance",
"DescribeStackRefactor",
"DescribeStackResource",
"DescribeStackResourceDrifts",
"DescribeStackResources",
"DescribeStacks",
"DescribeStackSet",
"DescribeStackSetOperation",
"DescribeType",
"DescribeTypeRegistration",
"DetectStackDrift",
"DetectStackResourceDrift",
"DetectStackSetDrift",
"EstimateTemplateCost",
"GetGeneratedTemplate",
"GetHookResult",
"GetStackPolicy",
"GetTemplate",
"GetTemplateSummary",
"ListChangeSets",
"ListExports",
"ListGeneratedTemplates",
"ListHookResults",
"ListImports",
"ListResourceScanRelatedResources",
"ListResourceScanResources",
"ListResourceScans",
"ListStackInstanceResourceDrifts",
"ListStackInstances",
"ListStackRefactorActions",
"ListStackRefactors",
"ListStackResources",
"ListStacks",
"ListStackSetAutoDeploymentTargets",
"ListStackSetOperationResults",
"ListStackSetOperations",
"ListStackSets",
"ListTypeRegistrations",
"ListTypes",
"ListTypeVersions",
"ValidateTemplate",
"CreateStack",
"CreateChangeSet",
"ExecuteChangeSet",
"CreateStackSet",
"CreateStackInstances",
"UpdateStack",
"UpdateStackSet",
"DeleteStack",
"DeleteChangeSet",
"DeleteStackSet",
"DeleteStackInstances",
"ContinueUpdateRollback",
"CancelUpdateStack",
"SetStackPolicy",
"UpdateTerminationProtection"
],
"description": "The CloudFormation command to execute"
},
"params": {
"type": "object",
"description": "REQUIRED parameters object. Use CloudFormation field names (e.g., StackName, StackSetName, ChangeSetName, TypeName, NextToken, MaxResults).",
"properties": {
"StackName": {
"type": "string",
"description": "Stack name or ID (Used by: DescribeStacks (Required), DescribeStackResources (Required), DescribeStackEvents (Required), DescribeStackDriftDetectionStatus (Required), GetStackPolicy (Required), GetTemplate (Required), GetTemplateSummary (Required), ListStackResources (Required), DetectStackDrift (Required))"
},
"StackSetName": {
"type": "string",
"description": "Stack set name or ID (Used by: DescribeStackSet (Required), DescribeStackSetOperation (Required), ListStackSetAutoDeploymentTargets (Required), ListStackSetOperationResults (Required), ListStackSetOperations (Required), DetectStackSetDrift (Required), ListStackInstances (Required))"
},
"ChangeSetName": {
"type": "string",
"description": "Change set name or ID (Used by: DescribeChangeSet (Required), ListChangeSets (Required))"
},
"TypeName": {
"type": "string",
"description": "Resource type name (Used by: DescribeType (Required), ListTypeVersions (Required), DescribeTypeRegistration (Required))"
},
"TypeArn": {
"type": "string",
"description": "Resource type ARN (Used by: DescribeType (Required))"
},
"NextToken": {
"type": "string",
"description": "Pagination token (Used by: most List commands)"
},
"MaxResults": {
"type": "number",
"description": "Maximum records to return (Used by: most List commands)"
}
}
}
}
}
},
{
"name": "CloudWatchLogTool",
"toolReferenceName": "CloudWatchLogTool",
"displayName": "CloudWatch Logs Tool",
"modelDescription": "Execute CloudWatch Logs commands including Insights queries. ALWAYS provide params object. Examples: DescribeLogGroups {command:'DescribeLogGroups', params:{logGroupNamePrefix:'app'}}. StartQuery {command:'StartQuery', params:{logGroupName:'my-group', queryString:'fields @timestamp, @message | filter @message like /ERROR/ | limit 20', startTime:1609459200000, endTime:1609545600000}}. GetQueryResults {command:'GetQueryResults', params:{queryId:'12345678-1234-1234-1234-123456789012'}}. FilterLogEvents {command:'FilterLogEvents', params:{logGroupName:'my-group', filterPattern:'ERROR'}}. DescribeMetricFilters {command:'DescribeMetricFilters', params:{logGroupName:'my-group'}}.",
"userDescription": "Query CloudWatch log groups, streams, events, run Insights queries, inspect metric filters and subscriptions, and open log viewer",
"tags": [
"aws",
"cloudwatch",
"logs",
"monitoring"
],
"icon": "$(list-selection)",
"canBeReferencedInPrompt": true,
"inputSchema": {
"type": "object",
"required": [
"command",
"params"
],
"properties": {
"command": {
"type": "string",
"enum": [
"DescribeLogGroups",
"DescribeLogStreams",
"DescribeMetricFilters",
"DescribeQueryDefinitions",
"DescribeSubscriptionFilters",
"DescribeDestinations",
"FilterLogEvents",
"GetLogEvents",
"GetLogGroupFields",
"GetQueryResults",
"OpenCloudWatchLogView",
"StartQuery",
"CreateLogGroup",
"CreateLogStream",
"PutLogEvents",
"PutMetricFilter",
"PutSubscriptionFilter",
"PutRetentionPolicy",
"PutResourcePolicy",
"DeleteLogGroup",
"DeleteLogStream",
"DeleteMetricFilter",
"DeleteSubscriptionFilter",
"DeleteRetentionPolicy",
"DeleteResourcePolicy",
"TagLogGroup",
"UntagLogGroup"
],
"description": "The CloudWatch Logs command to execute"
},
"params": {
"type": "object",
"description": "REQUIRED parameters object. Always include this even if empty. Provide logGroupName/logStreamName where needed.",
"properties": {
"logGroupNamePrefix": {
"type": "string",
"description": "Prefix filter for log group names (Used by: DescribeLogGroups)"
},
"logGroupName": {
"type": "string",
"description": "Target log group name (Used by: DescribeLogStreams (Required), GetLogEvents (Required), FilterLogEvents (Required), OpenCloudWatchLogView (Required))"
},
"logStreamNamePrefix": {
"type": "string",
"description": "Prefix filter for log stream names (Used by: DescribeLogStreams)"
},
"orderBy": {
"type": "string",
"enum": [
"LogStreamName",
"LastEventTime"
],
"description": "Ordering for DescribeLogStreams (Used by: DescribeLogStreams)"
},
"descending": {
"type": "boolean",
"description": "Whether to sort descending for DescribeLogStreams (Used by: DescribeLogStreams)"
},
"limit": {
"type": "number",
"description": "Maximum items to return where supported (Used by: DescribeLogGroups, DescribeLogStreams, GetLogEvents)"
},
"nextToken": {
"type": "string",
"description": "Pagination token (Used by: DescribeLogGroups, DescribeLogStreams, GetLogEvents)"
},
"logStreamName": {
"type": "string",
"description": "Target log stream name (Used by: GetLogEvents (Required), OpenCloudWatchLogView)"
},
"startTime": {
"type": "number",
"description": "Start time in epoch milliseconds (Used by: GetLogEvents)"
},
"endTime": {
"type": "number",
"description": "End time in epoch milliseconds (Used by: GetLogEvents)"
},
"startFromHead": {
"type": "boolean",
"description": "Return events starting from the beginning of the stream (Used by: GetLogEvents)"
},
"filterPattern": {
"type": "string",
"description": "Search pattern to filter log events (Used by: FilterLogEvents)"
},
"interleaved": {
"type": "boolean",
"description": "Return interleaved results from multiple log streams (Used by: FilterLogEvents)"
},
"queryString": {
"type": "string",
"description": "CloudWatch Insights query string (Used by: StartQuery (Required))"
},
"queryId": {
"type": "string",
"description": "Query ID from StartQuery (Used by: GetQueryResults (Required))"
},
"logGroupNames": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of log group names to query (Used by: StartQuery)"
},
"logGroupIdentifiers": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of log group identifiers (Used by: StartQuery)"
},
"maxQueryResults": {
"type": "number",
"description": "Maximum number of query results (Used by: DescribeQueryDefinitions)"
},
"filterNamePrefix": {
"type": "string",
"description": "Metric filter name prefix (Used by: DescribeMetricFilters)"
},
"metricName": {
"type": "string",
"description": "Metric name (Used by: DescribeMetricFilters)"
},
"metricNamespace": {
"type": "string",
"description": "Metric namespace (Used by: DescribeMetricFilters)"
},
"time": {
"type": "number",
"description": "Time in epoch milliseconds for GetLogGroupFields (Used by: GetLogGroupFields)"
},
"destinationNamePrefix": {
"type": "string",
"description": "Destination name prefix (Used by: DescribeDestinations)"
}
}
}
}
}
},
{
"name": "FileOperationsTool",
"toolReferenceName": "FileOperationsTool",
"displayName": "File Operations Tool",
"modelDescription": "Perform file operations: ReadFile to read file content, WriteFile to create or overwrite files, AppendFile to add content, ReadFileStream to get file metadata, ReadFileAsBase64 to read as Base64, GetFileInfo to get file statistics, ListFiles to list directory contents, ZipTextFile to create a zip archive of a file or directory.",
"userDescription": "Read and manage files with various encoding and format options",
"tags": [
"file",
"read",
"write",
"operations",
"filesystem",
"base64"
],
"icon": "$(file)",
"canBeReferencedInPrompt": true,
"inputSchema": {
"type": "object",
"required": [
"command",
"params"
],
"properties": {
"command": {
"type": "string",
"enum": [
"ReadFile",
"ReadFileStream",
"WriteFile",
"AppendFile",
"ReadFileAsBase64",
"GetFileInfo",
"ListFiles",
"ZipTextFile"
],
"description": "The file operation command to execute"
},
"params": {
"type": "object",
"description": "Command parameters. ReadFile: {filePath, encoding?}. ReadFileStream: {filePath}. WriteFile: {filePath, content, encoding?, overwrite?, ensureDir?}. AppendFile: {filePath, content, encoding?, ensureDir?}. ReadFileAsBase64: {filePath}. GetFileInfo: {filePath}. ListFiles: {dirPath, recursive?}. ZipTextFile: {filePath, outputPath?}",
"properties": {
"filePath": {
"type": "string",
"description": "File path (Used by: ReadFile (Required), ReadFileStream (Required), WriteFile (Required), AppendFile (Required), ReadFileAsBase64 (Required), GetFileInfo (Required), ZipTextFile (Required))"
},
"dirPath": {
"type": "string",
"description": "Directory path (Used by: ListFiles (Required))"
},
"encoding": {
"type": "string",
"description": "File encoding (Used by: ReadFile, WriteFile, AppendFile)"
},
"content": {
"type": "string",
"description": "Content to write or append (Used by: WriteFile (Required), AppendFile (Required))"
},
"overwrite": {
"type": "boolean",
"description": "Allow overwriting existing files (Used by: WriteFile)"
},
"ensureDir": {
"type": "boolean",
"description": "Create parent directories when missing (Used by: WriteFile, AppendFile)"
},
"recursive": {
"type": "boolean",
"description": "Recursively list files in subdirectories (Used by: ListFiles)"
},
"outputPath": {
"type": "string",
"description": "Custom output path for zip file (Used by: ZipTextFile)"
}
}
}
}
}
},
{
"name": "SessionTool",
"toolReferenceName": "SessionTool",
"displayName": "Session Tool",
"modelDescription": "Get or set AWS session values (AwsProfile, AwsEndPoint, AwsRegion), list available profiles, refresh cached credentials, or manage Pro activation. Use GetSession to read current values. Use SetSession with params to update any of AwsProfile, AwsEndPoint, AwsRegion. Use ListProfiles to return profile names detected from AWS config/credentials files. Use RefreshCredentials to clear and reload cached credentials. Use ActivateProVersion to start Pro activation. Use IsProVersion to check license status.",
"userDescription": "Manage session (profile/region/endpoint), list profiles, refresh credentials, Pro activation status",
"tags": [
"aws",
"session",
"profile",
"region",
"endpoint"
],
"icon": "$(gear)",
"canBeReferencedInPrompt": true,
"inputSchema": {
"type": "object",
"required": [
"command"
],
"properties": {
"command": {
"type": "string",
"enum": [
"GetSession",
"SetSession",
"ListProfiles",
"RefreshCredentials",
"ActivateProVersion",
"IsProVersion"
],
"description": "Use GetSession to read current values. Use SetSession to update session values. Use ListProfiles to retrieve available profile names. Use RefreshCredentials to clear and reload cached credentials. Use ActivateProVersion to start Pro activation. Use IsProVersion to check license status."
},
"params": {
"type": "object",
"description": "Parameters for SetSession. Omit to leave unchanged.",
"properties": {
"AwsProfile": {
"type": "string",
"description": "AWS profile name to set (Used by: SetSession)"
},
"AwsEndPoint": {
"type": "string",
"description": "Custom AWS/S3-compatible endpoint to set (Used by: SetSession)"
},
"AwsRegion": {
"type": "string",
"description": "AWS region to set (Used by: SetSession)"
}
}
}
}
}
},
{
"name": "DynamoDBTool",
"toolReferenceName": "DynamoDBTool",
"displayName": "DynamoDB Tool",
"modelDescription": "Execute DynamoDB commands. ALWAYS provide params object. Examples: ListTables {command:'ListTables', params:{Limit:10}}. DescribeTable {command:'DescribeTable', params:{TableName:'my-table'}}. Query {command:'Query', params:{TableName:'my-table', KeyConditionExpression:'pk = :pk', ExpressionAttributeValues:{':pk':{'S':'id'}}}}.",
"userDescription": "Manage DynamoDB tables and items",
"tags": [
"aws",
"dynamodb",
"database",
"nosql"
],
"icon": "$(server)",
"canBeReferencedInPrompt": true,
"inputSchema": {
"type": "object",
"required": [
"command",
"params"
],
"properties": {
"command": {
"type": "string",
"enum": [
"CreateTable",
"DeleteItem",
"DeleteTable",
"DescribeContinuousBackups",
"DescribeTable",
"DescribeTableReplicaAutoScaling",
"DescribeTimeToLive",
"GetItem",
"ListBackups",
"ListGlobalTables",
"ListTables",
"ListTagsOfResource",
"PutItem",
"Query",
"Scan",
"UpdateItem",
"UpdateTable",
"UpdateTimeToLive",
"CreateBackup",
"RestoreTableFromBackup",
"CreateGlobalTable",
"UpdateGlobalTable",
"TagResource",
"UntagResource",
"DescribeBackup",
"DeleteBackup"
],
"description": "The DynamoDB command to execute"
},
"params": {
"type": "object",
"description": "REQUIRED parameters object. Always include this even if empty. Provide TableName and key attributes where needed.",
"properties": {
"TableName": {
"type": "string",
"description": "Target DynamoDB table name (Used by: DescribeTable (Required), CreateTable (Required), DeleteTable (Required), Query (Required), Scan (Required), PutItem (Required), UpdateItem (Required), DeleteItem (Required), GetItem (Required), UpdateTable (Required), UpdateTimeToLive (Required))"
},
"Limit": {
"type": "number",
"description": "Maximum number of items to return (Used by: ListTables, Query, Scan)"
},
"ExclusiveStartTableName": {
"type": "string",
"description": "Pagination start table name (Used by: ListTables)"
},
"KeyConditionExpression": {
"type": "string",
"description": "Key condition expression (Used by: Query)"
},
"FilterExpression": {
"type": "string",
"description": "Filter expression (Used by: Query, Scan)"
},
"ExpressionAttributeValues": {
"type": "object",
"description": "Expression attribute values map (Used by: Query, Scan, UpdateItem, PutItem, DeleteItem)"
},
"ExpressionAttributeNames": {
"type": "object",
"description": "Expression attribute names map (Used by: Query, Scan, UpdateItem, PutItem, DeleteItem, CreateTable)"
},
"IndexName": {
"type": "string",
"description": "Secondary index name (Used by: Query, Scan)"
},
"Select": {
"type": "string",
"description": "Projection selection (Used by: Query, Scan)"
},
"Key": {
"type": "object",
"description": "Primary key map (Used by: GetItem (Required), DeleteItem (Required), UpdateItem (Required))"
},
"Item": {
"type": "object",
"description": "Item attributes map (Used by: PutItem (Required))"
},
"AttributeUpdates": {
"type": "object",
"description": "Legacy attribute updates map (Used by: UpdateItem)"
},
"UpdateExpression": {
"type": "string",
"description": "Update expression (Used by: UpdateItem)"
},
"ConditionExpression": {
"type": "string",
"description": "Condition expression (Used by: PutItem, UpdateItem, DeleteItem)"
},
"ProvisionedThroughput": {
"type": "object",
"description": "Provisioned throughput config (Used by: CreateTable, UpdateTable)"
},
"AttributeDefinitions": {
"type": "array",
"items": {
"type": "object"
},
"description": "Attribute definitions (Used by: CreateTable (Required))"
},
"KeySchema": {
"type": "array",
"items": {
"type": "object"
},
"description": "Key schema definitions (Used by: CreateTable (Required))"
},
"BillingMode": {
"type": "string",
"description": "Billing mode: PROVISIONED or PAY_PER_REQUEST (Used by: CreateTable, UpdateTable)"
},
"GlobalSecondaryIndexUpdates": {
"type": "array",
"items": {
"type": "object"
},
"description": "Updates to GSIs (Used by: UpdateTable)"
},
"TimeToLiveSpecification": {
"type": "object",
"description": "TTL specification (Used by: UpdateTimeToLive (Required))"
},
"ResourceArn": {
"type": "string",
"description": "Table resource ARN (Used by: ListTagsOfResource (Required))"
}
}
}
}
}
},
{
"name": "EC2Tool",
"toolReferenceName": "EC2Tool",
"displayName": "EC2 Tool",
"modelDescription": "Execute AWS EC2 commands for managing compute and network resources. ALWAYS provide params object. Supports read operations, instance lifecycle (launch, start, stop, terminate, reboot), VPC/network creation and configuration (VPCs, subnets, security groups, internet/NAT gateways, route tables), storage (volumes, snapshots, AMIs), and resource tagging. Examples: RunInstances {command:'RunInstances', params:{ImageId:'ami-123',InstanceType:'t3.micro',MinCount:1,MaxCount:1}}, CreateVpc {command:'CreateVpc', params:{CidrBlock:'10.0.0.0/16'}}, CreateSecurityGroup {command:'CreateSecurityGroup', params:{GroupName:'MyGroup',Description:'My security group',VpcId:'vpc-123'}}, DescribeInstances {command:'DescribeInstances', params:{InstanceIds:['i-123']}}.",
"userDescription": "Manage EC2 compute and network resources: launch/stop/terminate instances, create/delete VPCs and subnets, manage security groups, volumes, snapshots, AMIs, and query all resource types",
"tags": [
"aws",
"ec2",
"compute",
"network",
"instances"
],
"icon": "$(vm)",
"canBeReferencedInPrompt": true,
"inputSchema": {
"type": "object",
"required": [
"command",
"params"
],
"properties": {
"command": {
"type": "string",
"enum": [
"AllocateAddress",
"AssociateAddress",
"AssociateRouteTable",
"AttachInternetGateway",
"AttachVolume",
"AuthorizeSecurityGroupEgress",
"AuthorizeSecurityGroupIngress",
"CreateImage",
"CreateInternetGateway",
"CreateKeyPair",
"CreateLaunchTemplate",
"CreateNatGateway",
"CreateRoute",
"CreateRouteTable",
"CreateSecurityGroup",
"CreateSnapshot",
"CreateSubnet",
"CreateTags",
"CreateVolume",
"CreateVpc",
"DeleteInternetGateway",
"DeleteKeyPair",
"DeleteLaunchTemplate",
"DeleteNatGateway",
"DeleteRoute",
"DeleteRouteTable",
"DeleteSecurityGroup",
"DeleteSnapshot",
"DeleteSubnet",
"DeleteTags",
"DeleteVolume",
"DeleteVpc",
"DeregisterImage",
"DescribeAccountAttributes",
"DescribeAddresses",
"DescribeAvailabilityZones",
"DescribeFlowLogs",
"DescribeImages",
"DescribeInstances",
"DescribeInstanceStatus",
"DescribeInstanceTypeOfferings",
"DescribeInstanceTypes",
"DescribeInternetGateways",
"DescribeKeyPairs",
"DescribeLaunchTemplates",
"DescribeNatGateways",
"DescribeNetworkInterfaces",
"DescribeRegions",
"DescribeRouteTables",
"DescribeSecurityGroupRules",
"DescribeSecurityGroups",
"DescribeSnapshots",
"DescribeSpotPriceHistory",
"DescribeSubnets",
"DescribeTags",
"DescribeTransitGateways",
"DescribeVolumes",
"DescribeVpcEndpoints",
"DescribeVpcPeeringConnections",
"DescribeVpcs",
"DetachInternetGateway",
"DetachVolume",
"DisassociateAddress",
"DisassociateRouteTable",
"GetConsoleOutput",
"GetHostReservationPurchasePreview",
"GetLaunchTemplateData",
"GetPasswordData",
"RebootInstances",
"ReleaseAddress",
"RevokeSecurityGroupEgress",
"RevokeSecurityGroupIngress",
"RunInstances",
"StartInstances",
"StopInstances",
"TerminateInstances"
],
"description": "The EC2 command to execute"
},
"params": {
"type": "object",
"description": "REQUIRED parameters object. Always include this even if empty. Use native EC2 API field names (e.g., InstanceIds, Filters, Owners).",
"properties": {
"InstanceId": {
"type": "string",
"description": "Single instance ID (Used by: GetConsoleOutput (Required), GetPasswordData (Required))"
},
"InstanceIds": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of instance IDs (Used by: DescribeInstances, DescribeInstanceStatus)"
},
"Filters": {
"type": "array",
"items": {
"type": "object"
},
"description": "EC2 filter array with Name and Values[] (Used by: DescribeAddresses, DescribeAvailabilityZones, DescribeFlowLogs, DescribeImages, DescribeInstances, DescribeInstanceStatus, DescribeInstanceTypeOfferings, DescribeInstanceTypes, DescribeInternetGateways, DescribeKeyPairs, DescribeLaunchTemplates, DescribeNatGateways, DescribeNetworkInterfaces, DescribeRouteTables, DescribeSecurityGroupRules, DescribeSecurityGroups, DescribeSnapshots, DescribeSubnets, DescribeTags, DescribeTransitGateways, DescribeVpcEndpoints, DescribeVpcPeeringConnections, DescribeVpcs)"
},
"Owners": {
"type": "array",
"items": {
"type": "string"
},
"description": "Image owners (Used by: DescribeImages)"
},
"DryRun": {
"type": "boolean",
"description": "Validate permissions without running the request (Used by: DescribeAddresses, DescribeAvailabilityZones, DescribeImages, DescribeInstances, DescribeInstanceStatus, DescribeKeyPairs, DescribeRegions, DescribeSecurityGroups, DescribeSnapshots, DescribeSubnets, DescribeTags, DescribeVolumes, DescribeVpcs)"
},
"MaxResults": {
"type": "number",
"description": "Pagination: maximum results (Used by: DescribeImages, DescribeInstances, DescribeSnapshots, DescribeVolumes)"
},
"NextToken": {
"type": "string",
"description": "Pagination token for next page (Used by: DescribeImages, DescribeInstances, DescribeSnapshots, DescribeVolumes)"
},
"RegionNames": {
"type": "array",
"items": {
"type": "string"
},
"description": "Specific region names (Used by: DescribeRegions)"
},
"InstanceTypes": {
"type": "array",
"items": {
"type": "string"
},
"description": "Instance type names (Used by: DescribeInstanceTypes)"
},
"LocationType": {
"type": "string",
"enum": [
"region",
"availability-zone",
"availability-zone-id"
],
"description": "Location type for instance type offerings (Used by: DescribeInstanceTypeOfferings)"
},
"LaunchTemplateIds": {
"type": "array",
"items": {
"type": "string"
},
"description": "Launch template IDs (Used by: DescribeLaunchTemplates)"
},
"LaunchTemplateNames": {
"type": "array",
"items": {
"type": "string"
},
"description": "Launch template names (Used by: DescribeLaunchTemplates)"
},
"NetworkInterfaceIds": {
"type": "array",
"items": {
"type": "string"