KosmoKrator

other

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.

8 functions 7 read 1 write Bearer token auth

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.

Machine-Readable Metadata
integration_slug
aws
route_slug
aws
package
aws
auth_strategy
bearer_token Bearer token
cli_setup_supported
true
cli_runtime_supported
true
mcp_gateway_supported
true
lua_supported
true
supports_multi_account
true

Quick Links

AWS MCP Client Matrix

Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for AWS.

AWS CLI Matrix

Use these pages for direct AWS CLI workflows in scripts, CI, cron, and agent wrappers.

Function Catalog

FunctionTypeParametersDescription
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.