Skip to main content
Glama
ckq-aws

Resilience Architect MCP

by ckq-aws

GetStackResources

Retrieves all resources created by a specific CloudFormation stack so you can identify potential targets for fault injection experiments.

Instructions

Retrieves the resources that have been created by an individual stack.

This tool lists all resources within a specific CloudFormation stack,
which can be useful for identifying potential targets for fault injection experiments.

Args:
    ctx: The MCP context for logging and communication
    stack_name: Name of the CloudFormation stack

Returns:
    Dict containing stack resources

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
stack_nameYesName of the CloudFormation stack to retrieve resources from

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full behavioral burden. It discloses the return type ('Dict containing stack resources') but says nothing about read-only safety, pagination/result limits, permissions needed, or behavior when the stack name does not exist — notable gaps for a listing tool with zero annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loaded and readable, but the first two sentences restate the same idea (retrieves resources / lists resources), and the Args and Returns blocks largely duplicate the input schema and add little. Some trimming would help.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple single-parameter read tool with no output schema, the description covers purpose, parameter, and a use case. It leaves out pagination/scale behavior and error handling, so it is adequate but not fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% with a single required parameter, so the schema already documents stack_name fully. The description's Args section merely restates the same meaning, adding no syntax, format, or constraint detail beyond it.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb ('Retrieves'/'lists') and resource ('resources that have been created by an individual stack' / 'all resources within a specific CloudFormation stack'), which cleanly contrasts with sibling ListCloudFormationStacks (which lists stacks, not their contents). However, it does not explicitly name or route away from any sibling, so it stops short of full differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives one concrete use case ('useful for identifying potential targets for fault injection experiments'), which implies when to reach for this tool. But it names no alternatives, prerequisites, or exclusions, so the when-to-use guidance remains partial.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.