Resilience Architect MCP
Provides analysis of Terraform infrastructure code to design targeted resilience experiments before problems occur.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Resilience Architect MCPanalyze my CloudFormation stack and design experiments"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Resilience Architect MCP
Your proactive chaos engineering companion that analyzes infrastructure code and designs targeted resilience experiments before problems occur.
Description
The Resilience Architect MCP bridges the gap between infrastructure analysis and chaos engineering by proactively examining your AWS infrastructure blueprints (CloudFormation templates, CDK code, Terraform) and automatically designing appropriate fault injection experiments. This MCP server implements the Model Context Protocol to expose AWS Fault Injection Simulator (FIS) capabilities through an intelligent architectural lens.
The Resilience Architect doesn't just run chaos experiments—it thinks like a solutions architect to understand your infrastructure patterns, identify potential failure points, and craft targeted resilience tests. By analyzing your infrastructure code ahead of time, it helps you build more resilient systems through preemptive chaos engineering rather than reactive troubleshooting.
The server provides the following MCP tools:
AWS FIS Experiment Management Tools
list_fis_experiments: Retrieves a list of available FIS experiments organized by nameget_experiment: Gets detailed information about a specific experiment by IDlist_experiment_templates: Lists all experiment templates with pagination supportget_experiment_template: Gets details about a specific experiment template by IDstart_experiment: Starts an experiment from a template (requires --allow-writes flag)
AWS FIS Experiment Template Management Tools
create_experiment_template: Creates a new FIS experiment template (requires --allow-writes flag)update_experiment_template: Updates an existing FIS experiment template
AWS Resource Discovery Tools
CloudFormation Tools
list_cfn_stacks: Lists all CloudFormation stacks with pagination supportget_stack_resources: Gets resources from a specific CloudFormation stack
AWS Resource Explorer Tools
list_resource_explorer_views: Lists all Resource Explorer viewscreate_resource_explorer_view: Creates a new Resource Explorer view (requires --allow-writes flag)search_resources: Searches for AWS resources using Resource Explorer based on query string and view ARNdiscover_resource_relationships: Discovers relationships for a specific AWS resource using AWS Config
Related MCP server: Chaos Mesh MCP Server
Requirements
Python 3.10+
AWS credentials with appropriate IAM permissions
Required Python packages (see Installation)
Pre-requisites
AWS Credentials
Create a .env file in the project root with the following AWS credentials:
AWS_ACCESS_KEY_ID=your_access_key
AWS_SECRET_ACCESS_KEY=your_secret_key
AWS_SESSION_TOKEN=your_session_token # If using temporary credentialsInstall uv & python 3.10+
Install uv from Astral or the GitHub README
Install Python 3.10 or newer using
uv python install 3.10(or a more recent version)
Setting up the environment
Clone this repo
git clone https://github.com/ckq-aws/aws-fis-mcp.gitChange directory
cd src/aws-fis-mcp-serverRun
uv syncto install project dependencies
AWS Documenation MCP Server Installation
To ensure AI assistants can accurately determine available FIS actions, it's essential to install the AWS Documentation MCP server alongside this server. This combination prevents hallucinations and guarantees that fault injection experiment templates contain only valid FIS actions.
For detailed installation instructions, please refer to the AWS Documentation MCP Server README
AWS FIS MCP Server Installation
Configure the MCP server in your MCP client configuration (e.g., for Amazon Q Developer CLI, edit ~/.aws/amazonq/mcp.json)" --> as shown here: https://github.com/awslabs/mcp/tree/main/src/amazon-kendra-index-mcp-server#installation
Start the AWS FIS MCP server by configuring your mcp.json file as follows:
In mcp.json:
{
"mcpServers": {
"aws_fis_tool": {
"command": "uv",
"args": ["awslabs.aws_fis_mcp_server@latest"],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
},
"disabled": false,
"autoApprove": []
}
}
}Additional Information & Troubleshooting
Understanding MCP (Model Context Protocol)
MCP is a protocol that enables AI models to interact with external tools and data sources. It provides three main capabilities:
1. Tools
Tools are functions that allow AI models to perform actions in the real world. In this server, tools enable the AI to interact with AWS services like FIS, CloudFormation, and Resource Explorer. Tools have:
A name and description
Input parameters with types
Return values that the AI can interpret
Example from this project:
@main_mcp.tool('list_fis_experiments')
def list_all_fis_experiments():
# Function implementation
# Returns data that the AI can use2. Prompts
Prompts provide context and instructions to the AI model about how to use the tools. They can include:
Descriptions of what the tools do
Examples of how to use them
Guidelines for interpreting results
Prompts help the AI understand the domain (AWS FIS in this case) and make appropriate decisions.
3. Resources
Resources are additional data that the AI can access, such as:
Documentation
Examples
Templates
Historical data
Resources provide the AI with the information it needs to make informed decisions when using the tools.
Troubleshooting with MCP Inspector
The MCP Inspector is a powerful tool for debugging and troubleshooting your MCP server. It runs locally and acts as a client-side portal to test your MCP server and its functions in real-time without needing to integrate with an actual LLM.
Installing & Running MCP Inspector
Install Node.js if you haven't already: https://nodejs.org/en/download. This will automatically install npx which is needed to run the mcp inspector. The inspector runs directly through npx without requiring installation.
Change directory:
cd src/aws-fis-mcp-serverRun MCP Inspector:
Command to Start MCP Inspector:
mcp dev server.pyIn your terminal copy or click the link to the inspector with the pre-filled token: http://localhost:6274/?MCP_PROXY_AUTH_TOKEN=[PRE-FILLED TOKEN]
Happy debugging!
Using MCP Inspector
Interactive Testing: Test your MCP server tools directly through a user-friendly interface without needing an LLM
Inspect Tool Calls: View all tool calls, including parameters and return values in real-time
Debug Errors: Identify where errors occur in your tool implementations with detailed error reporting
Test Tools Manually: Execute tools directly with custom parameters to verify they work as expected
View Request/Response Flow: See the complete interaction between the client and your MCP server
Analyze Performance: Identify slow tools that might need optimization with timing metrics
Common Issues and Solutions
Authentication Errors:
Check your AWS credentials in the
.envfileVerify IAM permissions for the services being accessed
Tool Execution Failures:
Use the Inspector to view the exact error message
Check parameter types and values being passed
Slow Performance:
Look for tools that take a long time to execute
Consider implementing pagination or limiting result sets
Connection Issues:
Verify network connectivity to AWS services
Check for any VPC or security group restrictions
For more information on the MCP Inspector, visit the official documentation.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Built by cquarcoo@amazon.com with ❤️
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ckq-aws/resilience-architect-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server