aws-cli-mcp-server

Cloud-Thinker-AI/aws-cli-mcp-server

3.2

If you are the rightful owner of aws-cli-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The AWS CLI MCP Server is a bridge for executing AWS CLI commands through a model context protocol server.

Tools
  1. aws_cli_read

    For read-only AWS operations (listing, describing resources)

  2. aws_cli_write

    For write operations (creating, modifying, deleting resources)

AWS CLI MCP Server

A simple MCP server that provides a bridge to execute AWS CLI commands.

Tools

  • aws_cli_read: For read-only AWS operations (listing, describing resources)
  • aws_cli_write: For write operations (creating, modifying, deleting resources)

Setup

1. Configure AWS CLI

Set up AWS SSO following this guide.

2. Run Server

Using locally:

uvx --env AWS_PROFILE=your-sso-profile aws-cli-mcp-server

Using MCP configuration:

{
  "mcpServers": {
    "aws-cli-mcp-server": {
      "command": "uvx",
      "args": ["aws-cli-mcp-server"],
      "env": {
        "AWS_PROFILE": "your-sso-profile"
      }
    }
  }
}

Using access keys:

{
  "mcpServers": {
    "aws-cli-mcp-server": {
      "command": "uvx",
      "args": ["aws-cli-mcp-server"],
      "env": {
        "AWS_ACCESS_KEY_ID": "your-access-key",
        "AWS_SECRET_ACCESS_KEY": "your-secret-key"
      }
    }
  }
}