awslabs.aws-support-mcp-server
An Model Context Protocol (MCP) server for AWS SupportAPI.
pinned to #cdd87a8updated last month
Ask your AI client: “install mcps/awslabs-aws-support-mcp-server”.
Requires the metahub MCP server installed in your client. Set up MCP.
mh install mcps/awslabs-aws-support-mcp-servermetahub onboarded this repo on the author's behalf.
If you own github.com/awslabs/mcp on GitHub, claim the listing to take over publishing. Your claim preserves the existing eval history and badges; only the curator label is replaced with verified-publisher on your next publish.
Stars
9,586
Last commit
last month
Latest release
published
- #aws
- #mcp
- #mcp-client
- #mcp-clients
- #mcp-host
- #mcp-server
- #mcp-servers
- #mcp-tools
- #modelcontextprotocol
Automated checks the publisher passed at publish time — structure, docs, safety, and whether the artifact behaves as claimed.cdd87a8· last month
Behavioral checks haven't run yet: the sandbox couldn't execute this artifact (it may need credentials we don't provide, or an unsupported build). An environment limit, not a verdict.
Structural
7 passed1 warningName declared and well-formedwarn
Name "awslabs.aws-support-mcp-server" is not lowercase kebab-case.
Use lowercase letters, digits, and hyphens.
Repository is reachable
https://github.com/awslabs/mcp @ cdd87a8 — ★ 9,586 · Python · Apache-2.0 · last push today
Manifest detected
kind=mcp slug=awslabs-aws-support-mcp-server · path=src/aws-support-mcp-server · source=pyproject.toml
Slug is URL-safe
"awslabs-aws-support-mcp-server" matches /^[a-z0-9][a-z0-9-]{0,62}$/
Slug is unique within kind
No collision found for mcp/awslabs-aws-support-mcp-server
Version is semver
0.1.23
Manifest present and parseable
Manifest found at pyproject.toml.
Version is semver
Version 0.1.23.
Release history
1- releasecurrentcdd87a8warnlast month
Contents
A Model Context Protocol (MCP) server implementation for interacting with the AWS Support API. This server enables AI assistants to create and manage AWS support cases programmatically.
Features
- Create and manage AWS support cases
- Retrieve case information and full communication history
- Add communications to existing cases (with attachment support)
- Resolve support cases
- Upload and download attachments with double-encoding protection
- Discover valid service codes, category codes, severity levels, and languages before creating a case
- Browse available case creation options per service
Available Tools
| Tool | Description |
|---|---|
create_support_case | Create a new support case |
describe_support_cases | List/search existing cases |
describe_communications | Get full communication history for a case |
add_communication_to_case | Reply to a case (with optional attachments) |
resolve_support_case | Close a case |
describe_services | List AWS services and category codes |
describe_severity_levels | List severity levels |
describe_create_case_options | Get valid categories/severities for a service |
describe_supported_languages | List supported languages |
add_attachments_to_set | Upload files for attachment to cases |
describe_attachment | Download an attachment by ID |
Requirements
- Python 3.7+
- AWS credentials with Support API access
- Business, Enterprise On-Ramp, or Enterprise Support plan
Prerequisites
- Install
uvfrom Astral or the GitHub README - Install Python using
uv python install 3.10
Installation
| Kiro | Cursor | VS Code |
|---|---|---|
Configure the MCP server in your MCP client configuration (e.g., for Kiro, edit ~/.kiro/settings/mcp.json):
{
"mcpServers": {
"awslabs_support_mcp_server": {
"command": "uvx",
"args": [
"-m", "awslabs.aws-support-mcp-server@latest",
"--debug",
"--log-file",
"./logs/mcp_support_server.log"
],
"env": {
"AWS_PROFILE": "your-aws-profile"
}
}
}
}
Alternatively:
uv pip install -e .
uv run awslabs/aws_support_mcp_server/server.py
{
"mcpServers": {
"awslabs_support_mcp_server": {
"command": "path-to-python",
"args": [
"-m",
"awslabs.aws_support_mcp_server.server",
"--debug",
"--log-file",
"./logs/mcp_support_server.log"
],
"env": {
"AWS_PROFILE": "manual_enterprise"
}
}
}
}
Windows Installation
For Windows users, the MCP server configuration format is slightly different:
{
"mcpServers": {
"awslabs.aws-support-mcp-server": {
"disabled": false,
"timeout": 60,
"type": "stdio",
"command": "uv",
"args": [
"tool",
"run",
"--from",
"awslabs.aws-support-mcp-server@latest",
"awslabs.aws-support-mcp-server.exe"
],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR",
"AWS_PROFILE": "your-aws-profile",
"AWS_REGION": "us-east-1"
}
}
}
}
Usage
Start the server:
python -m awslabs.aws_support_mcp_server.server [options]
Options:
--port PORT: Port to run the server on (default: 8888)--debug: Enable debug logging--log-file: Where to save the log file
Configuration
The server can be configured using environment variables:
AWS_REGION: AWS region (default: us-east-1)AWS_PROFILE: AWS credentials profile name
Documentation
For detailed documentation on available tools and resources, see the API Documentation.
License
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License").
Reviews
No reviews yet. Be the first.
Related
Github Mcp Server
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Context7
Up-to-date code docs for any prompt
Playwright Mcp
Playwright Tools for MCP
mh install mcps/awslabs-aws-support-mcp-server