Your local AWS runtime. An MCP server that gives any AI agent (Claude, Cursor, Continue, Windsurf, Cline) a full AWS environment on localhost. The agent deploys your code, creates infrastructure, runs tests, and reports results — all locally, instantly, free.
You say "test my Lambda." The agent reads your code, deploys it, invokes it, and tells you if it works. You say "apply my Terraform." The agent runs it against the local environment and shows you what happened. You never think about MiniStack. You think about your code.
pipx install ministack-mcp
# or
uvx ministack-mcpThe MCP tells your AI agent: "You have a local AWS environment. Use it."
- Developer: "Test my Lambda function" → agent deploys it locally, invokes it, reports pass/fail
- Tester: "Run my test suite" → agent spins up infrastructure, runs tests, cleans up
- SRE: "Apply my Terraform" → agent applies it locally, verifies resources, reports status
The agent uses 38 tools to act on your behalf. MiniStack runs 67 AWS services locally.
{
"mcpServers": {
"ministack": {
"command": "uvx",
"args": ["ministack-mcp"]
}
}
}~/.cursor/mcp.json:
{
"mcpServers": {
"ministack": {
"command": "uvx",
"args": ["ministack-mcp"]
}
}
}Same pattern — "command": "uvx", "args": ["ministack-mcp"] in your MCP config.
Set MINISTACK_ENDPOINT_URL if not using the default http://localhost:4566.
MIT.