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_tokenBearer token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. AWS CLIHeadless setup and direct function calls. AWS MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
AWS MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for AWS.
Claude Code AWS MCP setup for Claude Code. Cursor AWS MCP setup for Cursor. Codex AWS MCP setup for Codex. OpenAI Agents AWS MCP setup for OpenAI Agents SDK. Claude Agent SDK AWS MCP setup for Claude Agent SDK. Vercel AI SDK AWS MCP setup for Vercel AI SDK. LangChain AWS MCP setup for LangChain. LangGraph AWS MCP setup for LangGraph. CrewAI AWS MCP setup for CrewAI. MCP clients AWS MCP setup for Generic MCP Clients.
AWS CLI Matrix
Use these pages for direct AWS CLI workflows in scripts, CI, cron, and agent wrappers.
CI AWS CLI for CI. Cron Jobs AWS CLI for cron jobs. Shell Scripts AWS CLI for shell scripts. Headless Automation AWS CLI for headless automation. Coding Agents AWS CLI for coding agents.
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. |