aws-cli-mcp-server

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

GitHub Stars

1

User Rating

Not Rated

Forks

0

Issues

0

Views

1

Favorites

0

README
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"
      }
    }
  }
}
Author Information

2

Followers

2

Repositories

0

Gists

0

Total Contributions

Threads