Resilience Architect MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AWS_ACCESS_KEY_ID | Yes | AWS access key ID for authentication | |
| AWS_SESSION_TOKEN | No | AWS session token for temporary credentials (optional) | |
| FASTMCP_LOG_LEVEL | No | Log level for the MCP server (e.g., ERROR, INFO, DEBUG) | ERROR |
| AWS_SECRET_ACCESS_KEY | Yes | AWS secret access key for authentication |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| ListFISExperimentsA | Retrieves a list of Experiments available in the AWS FIS service. |
| GetFISExperimentB | Get detailed information about a specific experiment. |
| ListFISExperimentTemplatesB | List all experiment templates. |
| GetFISExperimentTemplateC | Get detailed information about a specific experiment template. |
| StartFISExperimentB | Starts an AWS FIS experiment and returns immediately after starting. |
| CreateFISExperimentTemplateB | Create a new AWS FIS experiment template. |
| UpdateFISExperimentTemplateC | Update an existing AWS FIS experiment template. |
| ListCloudFormationStacksA | Retrieve all AWS CloudFormation Stacks. |
| GetStackResourcesB | Retrieves the resources that have been created by an individual stack. |
| ListResourceExplorerViewsA | List Resource Explorer views. |
| SearchResourcesB | Search for AWS resources using Resource Explorer. |
| CreateResourceExplorerViewB | Create a Resource Explorer view. |
| DiscoverResourceRelationshipsA | Discover relationships for a specific AWS resource using AWS Config. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 13 tools
Each tool has a clearly distinct purpose: FIS experiment vs template operations, Resource Explorer view management, resource search vs relationship discovery. The names and descriptions make boundaries clear, and there is no significant overlap that would cause misselection.
All tools follow a consistent CamelCase verb-noun pattern (e.g., GetFISExperiment, ListFISExperiments, CreateFISExperimentTemplate). Service prefixes are used consistently within FIS tools, and minor variations like GetStackResources vs ListCloudFormationStacks are justified by different actions.
13 tools is well-scoped for a resilience architecture server covering FIS, Resource Explorer, CloudFormation, and Config. Each tool serves a distinct operation without redundancy, fitting comfortably in the ideal 3-15 range.
The surface covers discovery, template creation/update, and experiment start, but lacks critical lifecycle operations like stopping an experiment, deleting templates, and deleting/updating Resource Explorer views. These gaps could hinder full workflow execution for an agent.