sceptre-mcp-server
OfficialClick on "Deploy 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
Related MCP server: quads-mcp
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 deployed
Maintenance
Related MCP Connectors
An MCP server that provides an API to LLMs to manage their JumpCloud resources.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
MCP server exposing the Backtest360 engine API as tools for AI agents.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAn MCP server that publishes CLI tools on your machine for discoverability by LLMs71MIT
- AlicenseNot gradedqualityDmaintenanceMCP server for interacting with QUADS infrastructure systems via API, enabling resource management and automation through LLM applications.MIT
- FlicenseNot gradedqualityCmaintenanceMulti-cloud MCP server that exposes cloud AI models as tools for AI CLI agents, supporting streaming, conversation history, parallel multi-model queries, and dynamic model discovery.2-
- FlicenseNot gradedqualityDmaintenanceA standalone MCP server that exposes API endpoints as tools for AI assistants, using SSE transport.-