sceptre-mcp-server
OfficialClick 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., "@sceptre-mcp-serverlist all stacks in my project"
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.
sceptre-mcp-server
A Model Context Protocol (MCP) server that exposes Sceptre CloudFormation management operations as tools for AI agents.
What it does
AI agents (Claude, Kiro, etc.) can connect to this server and manage AWS CloudFormation stacks through Sceptre's Python API. The server exposes 22 tools covering the full stack lifecycle:
Stack lifecycle — create, update, delete, launch
Querying — status, describe, outputs, resources, events
Templates — generate, validate
Diff & drift — diff against deployed state, detect and show drift
Change sets — create, describe, list, execute, delete
Discovery — list stacks, dump resolved config
Requirements
Python 3.10+
A configured Sceptre project with
config/andtemplates/directories
Installation
pip install sceptre-mcp-serverOr run directly without installing:
uvx sceptre-mcp-serverMCP Client Configuration
Kiro
Add to .kiro/settings/mcp.json:
{
"mcpServers": {
"sceptre": {
"command": "uvx",
"args": ["sceptre-mcp-server"],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
},
"disabled": false,
"autoApprove": []
}
}
}Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"sceptre": {
"command": "uvx",
"args": ["sceptre-mcp-server"]
}
}
}Tools Reference
Every tool requires a sceptre_project_dir parameter pointing to your Sceptre project root. Stack-specific tools also require a stack_path relative to the config/ directory.
Stack Lifecycle
Tool | Parameters | Description |
|
| Create a new CloudFormation stack |
|
| Update an existing stack |
|
| Delete a stack |
|
| Create or update a stack as needed |
Querying
Tool | Parameters | Description |
|
| Get current stack status |
|
| Get full stack details |
|
| Get stack output values |
|
| List stack resources |
|
| Get stack event history |
Templates
Tool | Parameters | Description |
|
| Render the CloudFormation template |
|
| Validate template with CloudFormation |
Diff & Drift
Tool | Parameters | Description |
|
| Diff local template vs deployed (deepdiff or difflib) |
|
| Detect configuration drift |
|
| Show drift details |
Change Sets
Tool | Parameters | Description |
|
| Create a change set |
|
| Describe a change set |
|
| List all change sets |
|
| Execute a change set |
|
| Delete a change set |
Discovery & Configuration
Tool | Parameters | Description |
|
| List stacks in the project |
|
| Dump resolved stack configuration |
Example Usage
Once connected, an AI agent can invoke tools like:
> List all stacks in my project at /home/user/infra
Calls: list_stacks(sceptre_project_dir="/home/user/infra")
> What's the status of the dev VPC stack?
Calls: get_stack_status(sceptre_project_dir="/home/user/infra", stack_path="dev/vpc.yaml")
> Show me what would change if I deploy the prod API stack
Calls: diff_stack(sceptre_project_dir="/home/user/infra", stack_path="prod/api.yaml")AWS Configuration
Sceptre uses the standard AWS credential chain. To specify a profile or region, pass environment variables through your MCP client config:
{
"mcpServers": {
"sceptre": {
"command": "uvx",
"args": ["sceptre-mcp-server"],
"env": {
"AWS_PROFILE": "my-profile",
"AWS_DEFAULT_REGION": "us-west-2"
}
}
}
}Contributing
See CONTRIBUTING.md for development setup, testing, pre-commit hooks, and type checking.
License
Apache-2.0
This server cannot be installed
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
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/Sceptre/sceptre-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server