AWS MCP Server provides a secure bridge between MCP-aware AI assistants (like Claude Desktop, Cursor, and Windsurf) and the AWS Command Line Interface. It allows AI tools to retrieve AWS CLI documentation and execute AWS commands in a containerized environment, returning formatted results optimized for AI consumption. This service enhances cloud infrastructure management by enabling AI assistants to directly interact with AWS resources through natural language requests. With support for Unix pipe operations and pre-defined prompt templates for common AWS tasks, it streamlines complex cloud operations while maintaining security through containerization.
AWS MCP Server implements the Model Context Protocol (MCP) to create a secure interface between AI assistants and the AWS Command Line Interface. This allows AI tools like Claude, Cursor, and other MCP-aware assistants to help you manage your AWS infrastructure more effectively.
# Clone the repository
git clone https://github.com/alexei-led/aws-mcp-server.git
cd aws-mcp-server
# Build and run Docker container
docker compose -f deploy/docker/docker-compose.yml up -d
You can also pull the pre-built multi-architecture image:
# Latest stable version
docker pull ghcr.io/alexei-led/aws-mcp-server:latest
# Or specific version (recommended for production)
docker pull ghcr.io/alexei-led/aws-mcp-server:1.0.0
Requirements:
# Clone repository
git clone https://github.com/alexei-led/aws-mcp-server.git
cd aws-mcp-server
# Set up virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install in development mode
pip install -e .
# Run the server
python -m aws_mcp_server
The server uses your existing AWS credentials. Make sure you have configured AWS CLI with appropriate credentials before running the server.
The AI assistant will use the MCP server to execute the necessary AWS CLI commands and provide you with the results.
If you encounter issues:
docker ps
or check process list)For more detailed information, visit the GitHub repository.