Manage AWS resources directly from your AI. List EC2 instances, manage S3 buckets, invoke Lambda functions, and more. Requires AWS credentials.
Credentials
| Name | Label | Required |
|---|---|---|
AWS_ACCESS_KEY_ID | Access Key ID | required |
AWS_SECRET_ACCESS_KEY | Secret Access Key | required |
AWS_REGION | Default Region | optional |
Setup
terminal
conductor plugins setup awsInstall
Built-in — no installation needed. Enable with conductor plugins enable aws
Tools
| Tool | Description | Inputs | Approval |
|---|---|---|---|
aws_ec2_list | List EC2 instances | region? | — |
aws_ec2_start | Start an EC2 instance | instanceId, region? | required |
aws_ec2_stop | Stop an EC2 instance | instanceId, region? | required |
aws_s3_list | List S3 buckets | region? | — |
aws_s3_read | Read an object from S3 | bucket, key, region? | — |
aws_s3_write | Write an object to S3 | bucket, key, content, region? | required |
aws_lambda_list | List Lambda functions | region? | — |
aws_lambda_invoke | Invoke a Lambda function | functionName, payload?, region? | required |
Tools marked required will prompt the user for approval before execution. These are typically write, delete, or send operations.
Example Prompts
“List my EC2 instances”
aws_ec2_list“Read file from S3 bucket”
aws_s3_read