A Model Context Protocol (MCP) server implementation that provides running generated python code to query any AWS resources through boto3.
**At your own risk**:
I didn't limit the operations to ReadyOnly, so that cautious Ops people can be helped using this tool doing management operations. Your AWS user role will dictate the permissions for what you can do.
I tried AWS Chatbot with Developer Access. Free Tier has a limit of 25 query/month for resources. Next tier is $19/month include 90% of the features I don't use. And the results are in a fashion of JSON and a lot of restrictions.
I tried using [aws-mcp](https://github.com/RafalWilinski/aws-mcp) but ran into a few issues:
**Setup Hassle**: Had to clone a git repo and deal with local setup
**Stability Issues**: Wasn't stable enough on my Mac
**Node.js Stack**: As a Python developer, I couldn't effectively contribute back to the Node.js codebase
So I created this new approach that:
Runs directly from a Docker image - no git clone needed
Uses Python and boto3 for better stability
Makes it easy for Python folks to contribute
Includes proper sandboxing for code execution
Keeps everything containerized and clean
For more information about the Model Context Protocol and how it works, see [Anthropic's MCP documentation](https://www.anthropic.com/news/model-context-protocol).
Components
Resources
The server exposes the following resource:
`aws://query_resources`: A dynamic resource that provides access to AWS resources through boto3 queries
Example Queries
Here are some example queries you can execute:
List S3 buckets:
Get latest CodePipeline deployment:
**Note**: All code snippets must set a `result` variable that will be returned to the client. The `result` variable will be automatically converted to JSON format, with proper handling of AWS-specific objects and datetime values.
Tools
The server offers a tool for executing AWS queries:
`aws_resources_query_or_modify`
* Execute a boto3 code snippet to query or modify AWS resources
* Input:
* `code_snippet` (string): Python code using boto3 to query AWS resources
* The code must set a `result` variable with the query output
* Allowed imports:
* boto3
* operator
* json
* datetime
* pytz
* dateutil
* re
* time
* Available built-in functions:
* Basic types: dict, list, tuple, set, str, int, float, bool
* Operations: len, max, min, sorted, filter, map, sum, any, all
* Object handling: hasattr, getattr, isinstance
* Other: print, __import__
Implementation Details
The server includes several safety features:
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
Setup
Prerequisites
You'll need AWS credentials with appropriate permissions to query AWS resources. You can obtain these by:
Creating an IAM user in your AWS account
Generating access keys for programmatic access
Ensuring the IAM user has necessary permissions for the AWS services you want to query
The following environment variables are required:
`AWS_ACCESS_KEY_ID`: Your AWS access key
`AWS_SECRET_ACCESS_KEY`: Your AWS secret key
`AWS_SESSION_TOKEN`: (Optional) AWS session token if using temporary credentials
`AWS_DEFAULT_REGION`: AWS region (defaults to 'us-east-1' if not set)
You can also use a profile stored in the `~/.aws/credentials` file. To do this, set the `AWS_PROFILE` environment variable to the profile name.
Note: Keep your AWS credentials secure and never commit them to version control.
Installing via Smithery
To install AWS Resources MCP Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/mcp-server-aws-resources-python):
Docker Installation
You can either build the image locally or pull it from Docker Hub. The image is built for the Linux platform.
Supported Platforms
Linux/amd64
Linux/arm64
Linux/arm/v7
Option 1: Pull from Docker Hub
Option 2: Build Locally
Run the container:
Or using stored credentials and a profile:
Cross-Platform Publishing
To publish the Docker image for multiple platforms, you can use the `docker buildx` command. Follow these steps:
**Create a new builder instance** (if you haven't already):
```bash
docker buildx create --use
```
**Build and push the image for multiple platforms**:
```bash
docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t buryhuang/mcp-server-aws-resources:latest --push .
```
**Verify the image is available for the specified platforms**:
```bash
docker buildx imagetools inspect buryhuang/mcp-server-aws-resources:latest
```
Usage with Claude Desktop
Running with Docker
Example using ACCESS_KEY_ID and SECRET_ACCESS_KEY
Example using PROFILE and mounting local AWS credentials