AWS MCP Server

by Havoc24k

3 stars
265 downloads
Not rated
GitHub

Description

# AWS MCP Server A Model Context Protocol (MCP) server that provides tools to interact with AWS services through Claude Desktop. ## Features - **S3**: List buckets, list objects - **EC2**: Describe instances, security groups, VPCs - **RDS**: Describe database instances - **Cost…

About

# AWS MCP Server A Model Context Protocol (MCP) server that provides tools to interact with AWS services through Claude Desktop. ## Features - **S3**: List buckets, list objects - **EC2**: Describe instances, security groups, VPCs - **RDS**: Describe database instances - **Cost Explorer**: Get cost and usage reports -…

Details

Author
Havoc24k
GitHub stars
3
Downloads
265
Categories
Cloud Service

- S3: List buckets and list objects
- EC2: Describe instances, security groups, VPCs
- RDS: Describe database instances
- Cost Explorer: Get cost and usage reports
- CloudWatch: Retrieve metric statistics
- Generic AWS SDK: Access any AWS operation via aws_sdk_wrapper
- Vector Store: Optional document ingestion and search capabilities

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name AWS MCP Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install the package with pip install aws-mcp-server, then configure Claude Desktop by adding "aws-mcp-server": { "command": "aws-mcp-server" } to claude_desktop_config.json. AWS credentials must be configured via aws configure or by editing ~/.aws/credentials.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "aws mcp server": {
            "aws-sa-tools-mcp-server": {
                "command": "uv",
                "args": [
                    "sync"
                ]
            }
        }
    }
}

McpServers

{
    "aws-sa-tools-mcp-server": {
        "command": "uv",
        "args": [
            "sync"
        ]
    }
}

AWS MCP Server

A Model Context Protocol (MCP) server that provides tools to interact with AWS services through Claude Desktop.

Features

- S3: List buckets, list objects
- EC2: Describe instances, security groups, VPCs
- RDS: Describe database instances
- Cost Explorer: Get cost and usage reports
- CloudWatch: Retrieve metric statistics
- Generic AWS SDK: Access any AWS operation via aws_sdk_wrapper
- Vector Store: Optional document ingestion and search capabilities

Quick Start

Prerequisites

- Python 3.12+ - AWS credentials configured (~/.aws/credentials) - Claude Desktop installed

Installation

1. Install the package:

   pip install aws-mcp-server

2. Configure Claude Desktop:
Add to your claude_desktop_config.json:

   {
"mcpServers": {
"aws-mcp-server": {
"command": "aws-mcp-server"
}
}
}

3. Configure AWS credentials:

   aws configure
# OR manually edit ~/.aws/credentials:

   [default]
aws_access_key_id = YOUR_ACCESS_KEY
aws_secret_access_key = YOUR_SECRET_KEY
region = us-east-1

Development

Local Development Setup

```bash
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.