AWS Resources MCP Server
Active
A Model Context Protocol (MCP) server implementation that provides running generated python code to query any AWS resources through boto3.
Updated 8/8/2025
Key Features
What makes this MCP server special
AST-based code analysis to validate imports and code structure
 Restricted execution environment with limited built-in functions
 JSON serialization of results with proper handling of AWS-specific objects
 Proper error handling and reporting
Requirements
docker
Server Information
Status
Active
Version
1.0.0
License
MIT
Author
https://github.com/baryhuang
Installation Guide
Get started with this MCP server in minutes
1. Install the Package
https://github.com/baryhuang/mcp-server-aws-resources-python?tab=readme-ov-file#docker-installation2. Configuration
{
  "mcpServers": {
    "aws-resources": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "AWS_ACCESS_KEY_ID=your_access_key_id_here",
        "-e",
        "AWS_SECRET_ACCESS_KEY=your_secret_access_key_here",
        "-e",
        "AWS_DEFAULT_REGION=us-east-1",
        "buryhuang/mcp-server-aws-resources:latest"
      ]
    }
  }
}3. Usage Example
-