Skip to content

Commit 4a7588f

Browse files
authored
Add AWS API MCP server (#154)
Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent fcf276b commit 4a7588f

1 file changed

Lines changed: 98 additions & 0 deletions

File tree

servers/com.aws-mcp-uvx.json

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.aws-mcp-uvx",
4+
"name": "AWS API (uvx)",
5+
"alias": "aws",
6+
"description": "Interact with AWS services and resources by running AWS CLI commands through natural language. Includes built-in command validation, security controls, and an optional read-only mode. Authenticates with standard AWS credentials.",
7+
"logo": "https://avatars.githubusercontent.com/u/3299148?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"cloud"
11+
],
12+
"tags": [
13+
"aws",
14+
"cloud",
15+
"aws-cli",
16+
"infrastructure",
17+
"devops",
18+
"amazon"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "uvx",
23+
"args": [
24+
"awslabs.aws-api-mcp-server@latest"
25+
],
26+
"env": {
27+
"AWS_ACCESS_KEY_ID": "${input:AWS_ACCESS_KEY_ID}",
28+
"AWS_SECRET_ACCESS_KEY": "${input:AWS_SECRET_ACCESS_KEY}",
29+
"AWS_REGION": "${input:AWS_REGION}"
30+
},
31+
"metadata": {
32+
"inputs": [
33+
{
34+
"id": "AWS_ACCESS_KEY_ID",
35+
"label": "AWS Access Key ID",
36+
"description": "The access key ID for an AWS IAM user or role. Used together with the secret access key to authenticate AWS CLI commands. Grant only the permissions you want the server to be able to use.",
37+
"type": "text",
38+
"required": true,
39+
"secret": false,
40+
"placeholder": "<your-aws-access-key-id>",
41+
"obtain": {
42+
"url": "https://console.aws.amazon.com/iam/home#/security_credentials",
43+
"instructions": "1. Sign in to the AWS Console and open the IAM service\n2. Go to Users and select (or create) the IAM user you want to use\n3. Open the 'Security credentials' tab\n4. Under 'Access keys', click 'Create access key'\n5. Copy the Access key ID shown",
44+
"button_label": "Open IAM Console"
45+
}
46+
},
47+
{
48+
"id": "AWS_SECRET_ACCESS_KEY",
49+
"label": "AWS Secret Access Key",
50+
"description": "The secret access key paired with the access key ID. Shown only once when the access key is created. Keep it secret; it is stored encrypted in your OS keychain.",
51+
"type": "text",
52+
"required": true,
53+
"secret": true,
54+
"placeholder": "<your-aws-secret-access-key>",
55+
"obtain": {
56+
"url": "https://console.aws.amazon.com/iam/home#/security_credentials",
57+
"instructions": "1. In the IAM Console, open the user's 'Security credentials' tab\n2. Click 'Create access key' (or use an existing one)\n3. Copy the 'Secret access key' shown at creation time\n4. You cannot retrieve it again later, so store it now",
58+
"button_label": "Open IAM Console"
59+
}
60+
},
61+
{
62+
"id": "AWS_REGION",
63+
"label": "AWS Region",
64+
"description": "The default AWS region for CLI commands when a request does not specify one (for example us-east-1, eu-west-1, ap-southeast-2).",
65+
"type": "text",
66+
"required": true,
67+
"secret": false,
68+
"default": "us-east-1",
69+
"placeholder": "us-east-1"
70+
}
71+
]
72+
}
73+
},
74+
"auth": {
75+
"type": "api_key",
76+
"instructions": "Authenticates with standard AWS credentials. Create an access key for an IAM user or role in the AWS IAM Console (Security credentials > Access keys), then provide the Access Key ID, Secret Access Key, and a default region."
77+
},
78+
"contributor": {
79+
"name": "AWS Labs",
80+
"github": "awslabs",
81+
"url": "https://aws.amazon.com"
82+
},
83+
"links": {
84+
"repository": "https://github.com/awslabs/mcp",
85+
"homepage": "https://awslabs.github.io/mcp/",
86+
"documentation": "https://awslabs.github.io/mcp/servers/aws-api-mcp-server/"
87+
},
88+
"platforms": [
89+
"all"
90+
],
91+
"capabilities": {
92+
"tools": true,
93+
"resources": false,
94+
"prompts": false,
95+
"read_only_mode": true
96+
},
97+
"changelog_url": "https://github.com/awslabs/mcp/blob/main/src/aws-api-mcp-server/CHANGELOG.md"
98+
}

0 commit comments

Comments
 (0)