AWS‑IReveal‑MCP

accessanalyzer_list_findings

List and filter findings for an AWS Access Analyzer by specifying AWS region, analyzer ARN, and optional criteria. Retrieve results in JSON format for analysis.

Instructions

List findings for an analyzer, with optional filter. filter: {'resourceType': {'eq': ['AWS::S3::Bucket']}, ...} Parameters: aws_region (str): The AWS region - use 'us-east-1' if not specified. analyzer_arn (str): The ARN of the analyzer to list findings for. filter (dict, optional): Filter criteria for findings. max_results (int): Maximum number of findings to return. Returns: str: JSON-formatted list of findings.

Input Schema

NameRequiredDescriptionDefault
analyzer_arnYes
aws_regionYes
filterNo
max_resultsNo

Input Schema (JSON Schema)

{ "properties": { "analyzer_arn": { "title": "Analyzer Arn", "type": "string" }, "aws_region": { "title": "Aws Region", "type": "string" }, "filter": { "additionalProperties": true, "default": null, "title": "Filter", "type": "object" }, "max_results": { "default": 50, "title": "Max Results", "type": "integer" } }, "required": [ "aws_region", "analyzer_arn" ], "title": "accessanalyzer_list_findingsArguments", "type": "object" }
ID: myt94uniyf