aws-mcp-server
An MCP server that provides tools for creating and managing AWS resources using boto3, including EC2, S3, VPC, subnets, security groups, and RDS.
README
AWS MCP Server
An MCP server that provides tools for creating and managing AWS resources using boto3.
Features
Resource Creation
- create_ec2_instance: Launch EC2 instances
- create_s3_bucket: Create S3 buckets with versioning and encryption
- create_vpc: Create VPCs with DNS settings
- create_subnet: Create subnets in VPCs
- create_security_group: Create security groups with ingress rules
- create_rds_instance: Create RDS database instances
Resource Management
- list_resources: List resources by type (EC2, S3, VPC, subnets, RDS, security groups)
- describe_resource: Get detailed information about specific resources
- delete_resource: Delete resources (with safety checks)
Prerequisites
- Python 3.10+
- AWS CLI configured with credentials
- Appropriate AWS IAM permissions
Installation
cd aws-mcp-server
pip install -r requirements.txt
AWS Credentials
Configure AWS credentials using one of these methods:
- AWS CLI:
aws configure - Environment variables:
export AWS_ACCESS_KEY_ID=your_key export AWS_SECRET_ACCESS_KEY=your_secret export AWS_DEFAULT_REGION=us-east-1 - IAM role (if running on EC2)
Configuration
Add to your Claude Code settings (~/.claude/settings.json):
{
"mcpServers": {
"aws": {
"command": "python",
"args": ["/Users/youruser/Documents/Base/DevOps-ClaudeAi/test-cases/SM1/my-first-vpc/aws-mcp-server/server.py"]
}
}
}
Usage Examples
User: "Create a VPC with CIDR 10.0.0.0/16 in us-east-1"
Claude: [calls create_vpc]
User: "List all EC2 instances in us-west-2"
Claude: [calls list_resources with resource_type=ec2, region=us-west-2]
User: "Create an S3 bucket named my-app-bucket with versioning enabled"
Claude: [calls create_s3_bucket with enable_versioning=true]
User: "Create a t2.micro EC2 instance using ami-12345"
Claude: [calls create_ec2_instance]
Security Notes
⚠️ IMPORTANT:
- This server can create real AWS resources that incur costs
- Always review actions before confirming
- Use IAM policies to limit permissions (principle of least privilege)
- Consider using AWS Budget Alerts
- The delete_resource tool is intentionally restricted - use AWS Console for deletions
Recommended IAM Policy
Create a restricted IAM user/role with only the permissions you need:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ec2:Describe*",
"ec2:RunInstances",
"ec2:CreateVpc",
"ec2:CreateSubnet",
"ec2:CreateSecurityGroup",
"s3:CreateBucket",
"s3:ListBucket",
"s3:PutBucketVersioning",
"rds:CreateDBInstance",
"rds:DescribeDBInstances"
],
"Resource": "*"
}
]
}
Error Handling
The server provides detailed error messages from AWS API responses, including:
- Permission errors (Access Denied)
- Resource conflicts (already exists)
- Quota limits exceeded
- Invalid parameters
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.