Metadata-Version: 2.4
Name: ministack-mcp
Version: 0.1.3
Summary: MCP knowledge layer for MiniStack — plug into any IDE AI (Claude Desktop, Cursor, Continue, Windsurf, Cline).
Author: Nahuel Nucera
License: MIT
Project-URL: Homepage, https://ministack.org
Project-URL: Repository, https://github.com/ministackorg/ministack-mcp
Project-URL: Issues, https://github.com/ministackorg/ministack-mcp/issues
Keywords: mcp,ministack,aws,localstack,claude,cursor,ai,agents
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Testing
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mcp>=1.2.0
Requires-Dist: requests>=2.31.0
Dynamic: license-file

# ministack-mcp

<!-- mcp-name: io.github.ministackorg/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

```bash
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

```json
{
  "mcpServers": {
    "ministack": {
      "command": "uvx",
      "args": ["ministack-mcp"]
    }
  }
}
```

### Cursor

`~/.cursor/mcp.json`:

```json
{
  "mcpServers": {
    "ministack": {
      "command": "uvx",
      "args": ["ministack-mcp"]
    }
  }
}
```

### 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.
