AWS Health MCP Server
OfficialProvides tools to retrieve AWS Health events, affected entities, and service status for your AWS account.
Provides tools to retrieve AWS Health events and affected entities across all accounts in your AWS Organization.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AWS Health MCP ServerWhat's happening with EC2 right now?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AWS Health MCP Server
Disclaimer: This AWS content is provided subject to the terms of the AWS Customer Agreement available at https://aws.amazon.com/agreement or other written agreement between the Customer and Amazon Web Services. This is sample code for demonstration purposes only. It is not intended for production use. You should work with your security and legal teams to meet your organizational security, regulatory, and compliance requirements before any deployment.
MCP server that exposes AWS Health API as tools. Works with Claude Desktop, Kiro or any MCP-compatible client.
📖 Blog: Building an AWS Health MCP Server for Agentic Operations
Prerequisites
Python 3.10+
AWS credentials configured (
aws configureor environment variables)AWS Business or Enterprise Support plan (required for Health API)
For org-level tools: AWS Organizations with Health service access enabled
Setup
Add this to your MCP config file:
Claude Desktop:
~/Library/Application Support/Claude/claude_desktop_config.jsonKiro:
~/.kiro/settings/mcp.jsonAmazon Q CLI:
~/.aws/amazonq/mcp.json
Using uvx from PyPI (recommended)
{
"mcpServers": {
"aws-health": {
"command": "uvx",
"args": ["aws-health-mcp-server"],
"env": {
"AWS_PROFILE": "default"
}
}
}
}Using pip
pip install aws-health-mcp-serverFrom a local clone
{
"mcpServers": {
"aws-health": {
"command": "uv",
"args": ["run", "--directory", "/path/to/aws-health-mcp-server", "aws-health-mcp-server"],
"env": {
"AWS_PROFILE": "default"
}
}
}
}That's it. uv handles the venv and dependencies automatically.
Tools
Account-Level
Tool | Description |
| All active health events |
| Resources impacted by open events |
| Events for a specific service (e.g., EC2, RDS) |
| Recently resolved events |
| Upcoming maintenance |
Organization-Level
Tool | Description |
| Events across all accounts |
| Active events org-wide |
| Impacted resources across accounts |
| Service-specific events org-wide |
| Events for a specific account |
| Org-wide scheduled maintenance |
Example Prompts
"Are there any active AWS health events?"
"What's happening with EC2 right now?"
"Show me scheduled maintenance across my organization"
"What resources are affected by current issues in account 123456789012?"
Environment Variables
Variable | Default | Description |
| none | AWS credentials profile |
|
| Region (Health API is us-east-1 only) |
|
| Logging level ( |
|
| API timeout in seconds |
Troubleshooting
"SubscriptionRequiredException" — You need AWS Business or Enterprise Support.
"AccessDeniedException" — Your IAM user/role needs health:Describe* permissions.
Org tools return access error — Enable Health service access from your management account:
aws health enable-health-service-access-for-organizationServer not starting — Check the MCP client logs. Common issues:
Wrong Python path in config (use the full
.venv/bin/pythonpath)Missing dependencies (run
pip install -e .in the venv)
Development
git clone https://github.com/aws-samples/sample-health-mcp-server.git
cd aws-health-mcp-server
uv sync --extra dev
uv run pytest tests/ -vLicense
MIT-0
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aws-samples/sample-health-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server