Skip to main content

ministack-mcp

Your local AWS runtime for AI agents. A Model Context Protocol server that lets any IDE-resident AI agent (Claude Desktop, Cursor, Continue, Devin, Cline, …) act against a local MiniStack environment — deploy code, create infrastructure, run AWS CLI commands, run smoke tests, export live state as IaC — and answer deterministic, version-pinned questions about MiniStack's emulated services, supported operations, config vars, and parity status.

The knowledge side is backed by catalog.json + parity.json, generated once at build time from the MiniStack codebase, so those answers are stable, fast, and tied to the exact MiniStack version you have running. The action side talks to the live emulator at MINISTACK_ENDPOINT_URL.

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.

  • Developer: "Test my Lambda function" → deploys it locally, invokes it, reports pass/fail
  • Tester: "Run my test suite" → spins up infrastructure, runs tests, cleans up
  • SRE: "Apply my Terraform" → applies it locally, verifies resources, reports status

Install

pipx install ministack-mcp
# or
uvx ministack-mcp

Set MINISTACK_ENDPOINT_URL (default http://localhost:4566) if you run MiniStack on a non-default port.

Tools exposed

Around 40 tools, grouped by what they do:

Knowledge (from catalog.json / parity.json)list_services, get_service, is_operation_supported, search_operations, list_config_vars, get_config_var, get_endpoint_info, find_service_for_use_case, compare_with_aws.

State & healthministack_version, ministack_health, ministack_reset, reset_and_verify, validate_endpoint, get_setup_status, get_docker_status.

Act on the live emulatoraws_execute (any AWS CLI command), create_resource, delete_resource, list_resources, describe_resource, invoke_lambda, put_s3_object, query_dynamodb, send_sqs_message, publish_sns.

Test & generaterun_smoke_test, check_terraform_coverage, check_sdk_coverage, generate_test_fixture, scaffold_architecture, export_setup, diff_environments, explain_error, suggest_next_steps.

Docs (also exposed as ministack://docs/* MCP resources)get_readme, get_quickstart, get_docker_doc, get_terraform_doc, get_testing_doc, get_faq_doc, get_migration_guide.

IDE configuration

Claude Desktop / Claude Code

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "ministack": {
      "command": "uvx",
      "args": ["ministack-mcp"],
      "env": {
        "MINISTACK_ENDPOINT_URL": "http://localhost:4566"
      }
    }
  }
}

Cursor

~/.cursor/mcp.json:

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

Continue (.continuerc or ~/.continue/config.json)

{
  "experimental": {
    "modelContextProtocolServers": [
      {
        "transport": {
          "type": "stdio",
          "command": "uvx",
          "args": ["ministack-mcp"]
        }
      }
    ]
  }
}

Devin

Devin adds MCP servers from its web UI, not a local config file:

  1. Go to Settings → Connections → MCP servers and click Add a custom MCP (requires the Manage MCP Servers permission).
  2. Choose the STDIO transport and set Command uvx and Args ministack-mcp. Add MINISTACK_ENDPOINT_URL to the environment if you run MiniStack on a non-default port.

Cline (VS Code extension)

VS Code settings, cline.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.

Regenerating the catalog

When MiniStack itself changes, regenerate the catalog before publishing a new release of ministack-mcp:

python build_catalog.py

This rewrites catalog.json in place. parity.json is hand-curated and is never touched by the generator.

How it works

  1. build_catalog.py walks ministack/services/*.py and extracts AWS operation names from action dicts, equality compares, match/case blocks, URL-path dispatch dicts, and module docstrings.
  2. It also walks all of ministack/ for os.environ.get / os.getenv / os.environ[...] to inventory every env var the emulator reads.
  3. The result, catalog.json, is shipped with the package.
  4. parity.json adds curated status (full / partial / stub / paid / data-plane / unsupported), real-backend flags, persistence, and gotchas.
  5. server.py reads both files at import time and exposes the tools above over MCP stdio. The knowledge tools answer from the catalog; the action tools (aws_execute, invoke_lambda, create_resource, …) talk to the live emulator at MINISTACK_ENDPOINT_URL.

License

MIT.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ministack_mcp-0.1.30.tar.gz (68.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ministack_mcp-0.1.30-py3-none-any.whl (69.3 kB view details)

Uploaded Python 3

File details

Details for the file ministack_mcp-0.1.30.tar.gz.

File metadata

  • Download URL: ministack_mcp-0.1.30.tar.gz
  • Upload date:
  • Size: 68.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ministack_mcp-0.1.30.tar.gz
Algorithm Hash digest
SHA256 3b90de3bac0681a052a31ea443c6d8d298f118595ff931a930548b2472954702
MD5 7e6733b187b43124dc174b6294267e4e
BLAKE2b-256 5522b4ec4abfdc5bcb7059ac12c1a8474d4bfca96f9631e6ecb2b2cf97b99ee0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ministack_mcp-0.1.30.tar.gz:

Publisher: pypi-publish.yml on ministackorg/ministack-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ministack_mcp-0.1.30-py3-none-any.whl.

File metadata

  • Download URL: ministack_mcp-0.1.30-py3-none-any.whl
  • Upload date:
  • Size: 69.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ministack_mcp-0.1.30-py3-none-any.whl
Algorithm Hash digest
SHA256 8ba905b74bf2f0829a31502ce4392af0bd9f139105dd766c18fab8fb394d34c1
MD5 2a019aba637deaaa491538c0a1818444
BLAKE2b-256 0998c5c69d783c3ac6c83cda27930bba55e5f61974062ac97af48a02de1fca4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ministack_mcp-0.1.30-py3-none-any.whl:

Publisher: pypi-publish.yml on ministackorg/ministack-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.1.30 This release

2 files

0.1.28

2 files

0.1.27

2 files

0.1.26

2 files

0.1.23

2 files

0.1.22

2 files

0.1.21

2 files

0.1.18

2 files

0.1.16

2 files

0.1.14

2 files

0.1.13

2 files

0.1.12

2 files

0.1.11

2 files

0.1.8

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page