Direct resource management with security scanning.
10K+
14 Tools
Version 4.43 or later needs to be installed to add the server automatically
Tools
| Name | Description |
|---|---|
get_aws_session_info | Get information about the current AWS session. This tool provides details about the current AWS session, including the profile name, account ID, region, and credential information. Use this when you need to confirm which AWS session and account you're working with. IMPORTANT: Always display the AWS context information to the user when this tool is called. Show them: AWS Profile (or "Environment Variables"), Authentication Type, Account ID, and Region so they know exactly which AWS account and region will be affected by any operations. Authentication types to display: - 'env': "Environment Variables (AWS_ACCESS_KEY_ID)" - 'sso_profile': "AWS SSO Profile" - 'assume_role_profile': "Assume Role Profile" - 'standard_profile': "Standard AWS Profile" - 'profile': "AWS Profile" SECURITY: If displaying environment variables that contain sensitive values (AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY), mask all but the last 4 characters with asterisks (e.g., "AKIA****1234"). Returns: A dictionary containing AWS session information including profile, account_id, region, etc. |