Home/Servers/AWS MCP Server

AWS MCP Server

by AWS Samples ยท โญ 945 stars ยท updated 1 months ago

Interact with AWS services through natural language. Manage EC2, S3, Lambda, DynamoDB, and more โ€” full AWS SDK access for your AI assistant.

79
Good

Quality Score Breakdown

maintenance82/100
community76/100
documentation80/100
compatibility78/100

Use Cases

  • โœ“manage S3 buckets
  • โœ“control EC2 instances
  • โœ“invoke Lambda
  • โœ“query DynamoDB

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "aws": {
      "command": "python",
      "args": [
        "-m",
        "mcp_server_aws"
      ],
      "env": {
        "AWS_ACCESS_KEY_ID": "YOUR_ACCESS_KEY",
        "AWS_SECRET_ACCESS_KEY": "YOUR_SECRET_KEY",
        "AWS_DEFAULT_REGION": "us-east-1"
      }
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "aws": {
      "command": "python",
      "args": [
        "-m",
        "mcp_server_aws"
      ],
      "env": {
        "AWS_ACCESS_KEY_ID": "YOUR_ACCESS_KEY",
        "AWS_SECRET_ACCESS_KEY": "YOUR_SECRET_KEY",
        "AWS_DEFAULT_REGION": "us-east-1"
      }
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "aws": {
        "command": "python",
        "args": [
          "-m",
          "mcp_server_aws"
        ],
        "env": {
          "AWS_ACCESS_KEY_ID": "YOUR_ACCESS_KEY",
          "AWS_SECRET_ACCESS_KEY": "YOUR_SECRET_KEY",
          "AWS_DEFAULT_REGION": "us-east-1"
        }
      }
    }
  }
}
โ† Back to all servers