AWS MCP Server
by AWS Samples ยท โญ 945 stars ยท updated 1 months ago
Interact with AWS services through natural language. Manage EC2, S3, Lambda, DynamoDB, and more โ full AWS SDK access for your AI assistant.
79
Good
Quality Score Breakdown
maintenance82/100
community76/100
documentation80/100
compatibility78/100
Use Cases
- โmanage S3 buckets
- โcontrol EC2 instances
- โinvoke Lambda
- โquery DynamoDB
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"aws": {
"command": "python",
"args": [
"-m",
"mcp_server_aws"
],
"env": {
"AWS_ACCESS_KEY_ID": "YOUR_ACCESS_KEY",
"AWS_SECRET_ACCESS_KEY": "YOUR_SECRET_KEY",
"AWS_DEFAULT_REGION": "us-east-1"
}
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"aws": {
"command": "python",
"args": [
"-m",
"mcp_server_aws"
],
"env": {
"AWS_ACCESS_KEY_ID": "YOUR_ACCESS_KEY",
"AWS_SECRET_ACCESS_KEY": "YOUR_SECRET_KEY",
"AWS_DEFAULT_REGION": "us-east-1"
}
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"aws": {
"command": "python",
"args": [
"-m",
"mcp_server_aws"
],
"env": {
"AWS_ACCESS_KEY_ID": "YOUR_ACCESS_KEY",
"AWS_SECRET_ACCESS_KEY": "YOUR_SECRET_KEY",
"AWS_DEFAULT_REGION": "us-east-1"
}
}
}
}
}