drio
Open app

aws-mcp-infra-helper

Source

This creates an MCP server enabling Claude to run security scans on Terraform code, create architecture diagrams of your AWS cloud architectures and execute terraform commands to deploy or modify resources

Catalog onlyCatalog onlySTDIO

Overview

aws-mcp-infra-helper is a tool that creates an MCP server to enable Claude to run security scans on Terraform code, create architecture diagrams of AWS cloud architectures, and execute Terraform commands to deploy or modify resources.

To use aws-mcp-infra-helper, set up the MCP server and configure it to connect with your AWS account. You can then run security scans on your Terraform code and generate architecture diagrams.

  • Security scanning of Terraform code - Generation of architecture diagrams for AWS cloud setups - Execution of Terraform commands for resource management
  1. Ensuring security compliance in Terraform scripts.
  2. Visualizing AWS architecture for better understanding and documentation.
  3. Automating the deployment and modification of AWS resources using Terraform.

Add to your AI client

Use these steps to connect aws-mcp-infra-helper in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "aws-mcp-infra-helper-madhurprash": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aws-mcp-infra-helper-madhurprash"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

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

{
  "mcpServers": {
    "aws-mcp-infra-helper-madhurprash": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aws-mcp-infra-helper-madhurprash"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "aws-mcp-infra-helper-madhurprash": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aws-mcp-infra-helper-madhurprash"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "aws-mcp-infra-helper-madhurprash": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aws-mcp-infra-helper-madhurprash"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "aws-mcp-infra-helper-madhurprash": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aws-mcp-infra-helper-madhurprash"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "aws-mcp-infra-helper-madhurprash": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aws-mcp-infra-helper-madhurprash"
      ]
    }
  }
}

FAQ

What programming language is aws-mcp-infra-helper built with?

aws-mcp-infra-helper is built using Python.

Is there a license for aws-mcp-infra-helper?

The project does not currently specify a license.

How can I contribute to aws-mcp-infra-helper?

You can contribute by submitting issues or pull requests on the GitHub repository.