aws_cloudformation
Deploy, update, or delete AWS CloudFormation stacks through MCP SysOperator by specifying actions, regions, templates, and parameters for efficient infrastructure management.
Instructions
Manage AWS CloudFormation stacks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | ||
capabilities | No | ||
parameters | No | ||
region | Yes | ||
stackName | No | ||
tags | No | ||
templateBody | No | ||
templateUrl | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"action": {
"enum": [
"list",
"create",
"update",
"delete"
],
"type": "string"
},
"capabilities": {
"items": {
"type": "string"
},
"type": "array"
},
"parameters": {
"additionalProperties": {},
"type": "object"
},
"region": {
"minLength": 1,
"type": "string"
},
"stackName": {
"type": "string"
},
"tags": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"templateBody": {
"type": "string"
},
"templateUrl": {
"type": "string"
}
},
"required": [
"action",
"region"
],
"type": "object"
}