Install
$ agentstack add mcp-ministackorg-ministack-mcp ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
ministack-mcp
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.
Install
pipx install ministack-mcp
# or
uvx ministack-mcp
What happens
The 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.
IDE configuration
Claude Desktop / Claude Code
{
"mcpServers": {
"ministack": {
"command": "uvx",
"args": ["ministack-mcp"]
}
}
}
Cursor
~/.cursor/mcp.json:
{
"mcpServers": {
"ministack": {
"command": "uvx",
"args": ["ministack-mcp"]
}
}
}
Codex configuration
Codex uses the same local MCP contract as the other agents in this repo. Keep MINISTACK_ENDPOINT_URL pointed at the MiniStack instance you want to use.
Codex CLI
Register the server with the local uvx entry point:
{
"mcpServers": {
"ministack": {
"command": "uvx",
"args": ["ministack-mcp"]
}
}
}
If you need a non-default backend:
export MINISTACK_ENDPOINT_URL=http://localhost:4566
uvx ministack-mcp
Codex app
Use the same MCP server definition in the Codex app settings:
{
"mcpServers": {
"ministack": {
"command": "uvx",
"args": ["ministack-mcp"]
}
}
}
If the app exposes a separate MCP settings screen, add the same command and args pair there.
Continue / Windsurf / Cline
Same pattern — "command": "uvx", "args": ["ministack-mcp"] in your MCP config.
Set MINISTACK_ENDPOINT_URL if not using the default http://localhost:4566.
License
MIT.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ministackorg
- Source: ministackorg/ministack-mcp
- License: MIT
- Homepage: https://ministack.org
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.