aws_resources_query_or_modify
Execute Python code with boto3 to query or modify AWS resources directly from conversations using the AWS Resources MCP Server.
Instructions
Execute a boto3 code snippet to query or modify AWS resources
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code_snippet | Yes | Python code using boto3 to query or modify AWS resources. The code should have default execution setting variable named 'result'. Example code: 'result = boto3.client('s3').list_buckets()' |
Input Schema (JSON Schema)
{
"properties": {
"code_snippet": {
"description": "Python code using boto3 to query or modify AWS resources. The code should have default execution setting variable named 'result'. Example code: 'result = boto3.client('s3').list_buckets()'",
"type": "string"
}
},
"required": [
"code_snippet"
],
"type": "object"
}