Some checks failed
CI / Check / macos-latest (push) Has been cancelled
CI / Check / ubuntu-latest (push) Has been cancelled
CI / Check / windows-latest (push) Has been cancelled
CI / Test / macos-latest (push) Has been cancelled
CI / Test / ubuntu-latest (push) Has been cancelled
CI / Test / windows-latest (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / Secrets Scan (push) Has been cancelled
CI / Install Script Smoke Test (push) Has been cancelled
43 lines
1.3 KiB
TOML
43 lines
1.3 KiB
TOML
id = "aws"
|
|
name = "AWS"
|
|
description = "Manage Amazon Web Services resources including S3, EC2, Lambda, and more through the MCP server"
|
|
category = "cloud"
|
|
icon = "☁️"
|
|
tags = ["cloud", "amazon", "infrastructure", "s3", "ec2", "lambda", "devops"]
|
|
|
|
[transport]
|
|
type = "stdio"
|
|
command = "npx"
|
|
args = ["@modelcontextprotocol/server-aws"]
|
|
|
|
[[required_env]]
|
|
name = "AWS_ACCESS_KEY_ID"
|
|
label = "AWS Access Key ID"
|
|
help = "The access key ID from your AWS IAM credentials"
|
|
is_secret = true
|
|
get_url = "https://console.aws.amazon.com/iam/home#/security_credentials"
|
|
|
|
[[required_env]]
|
|
name = "AWS_SECRET_ACCESS_KEY"
|
|
label = "AWS Secret Access Key"
|
|
help = "The secret access key paired with your access key ID"
|
|
is_secret = true
|
|
get_url = "https://console.aws.amazon.com/iam/home#/security_credentials"
|
|
|
|
[[required_env]]
|
|
name = "AWS_REGION"
|
|
label = "AWS Region"
|
|
help = "The default AWS region to use (e.g., us-east-1, eu-west-1)"
|
|
is_secret = false
|
|
get_url = ""
|
|
|
|
[health_check]
|
|
interval_secs = 60
|
|
unhealthy_threshold = 3
|
|
|
|
setup_instructions = """
|
|
1. Go to the AWS IAM Console (https://console.aws.amazon.com/iam/) and create or select an IAM user with programmatic access.
|
|
2. Generate an access key pair and note down the Access Key ID and Secret Access Key.
|
|
3. Paste both credentials and your preferred AWS region (default: us-east-1) into the fields above.
|
|
"""
|