AWS Security MCP

Apache 2.0
4
  • Apple

get_load_balancers

Retrieve and filter AWS load balancers (ALB, NLB, GWLB, classic) by type, ARN, or name. Returns JSON with ARNs, details, and pagination for security analysis and infrastructure inspection.

Instructions

Get load balancers with optional filtering.

Searches ELBv2 first (ALB, NLB, GWLB), then falls back to classic ELB if needed. Returns ARNs as the primary identifier. Args: load_balancer_type: Filter by type ('classic', 'application', 'network', 'gateway') arns: Filter by load balancer ARNs (preferred method) names: Filter by load balancer names (fallback method) next_token: Token for pagination max_items: Maximum items to return Returns: JSON string with load balancer information and pagination details

Input Schema

NameRequiredDescriptionDefault
arnsNo
load_balancer_typeNo
max_itemsNo
namesNo
next_tokenNo

Input Schema (JSON Schema)

{ "properties": { "arns": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "null" } ], "default": null, "title": "Arns" }, "load_balancer_type": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Load Balancer Type" }, "max_items": { "default": 50, "title": "Max Items", "type": "integer" }, "names": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "null" } ], "default": null, "title": "Names" }, "next_token": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Next Token" } }, "title": "get_load_balancersArguments", "type": "object" }

You must be authenticated.

Other Tools from AWS Security MCP

Related Tools

ID: s0vblk657g