data
AWS MCP, CLI, and Lua Integration for AI Agents
AWS integration docs for AI agents: MCP gateway setup, AWS CLI commands, Lua API reference, credentials, and function schemas.AWS for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
aws.aws_list_s3_buckets | Read read | 1 | List all S3 buckets in the AWS account. Returns bucket names, creation dates, and regions. |
aws.aws_list_ec2_instances | Read read | 3 | Describe EC2 instances in the AWS account. Returns instance IDs, types, states, and metadata. Supports filtering by instance IDs, states, or tags. |
aws.aws_list_lambda_functions | Read read | 2 | List all Lambda functions in the AWS account. Returns function names, runtimes, descriptions, and configuration. |
aws.aws_invoke_lambda | Write write | 4 | Invoke an AWS Lambda function with an optional payload. Supports synchronous (RequestResponse) and asynchronous (Event) invocation modes. |
aws.aws_list_dynamodb_tables | Read read | 3 | List all DynamoDB tables in the AWS account. Returns table names and can be used with pagination to enumerate all tables. |
aws.aws_get_cloudwatch_metrics | Read read | 8 | Get CloudWatch metric data for AWS resources. Supports querying metrics by namespace, metric name, dimensions, and time range with configurable statistics and periods. |
aws.aws_list_sns_topics | Read read | 2 | List all SNS notification topics in the AWS account. Returns topic ARNs and names. |
aws.aws_get_current_user | Read read | 0 | Get the current IAM user identity. Returns user ARN, account ID, and user ID. Useful for verifying credentials and understanding which AWS account is being accessed. |