A Model Context Protocol server providing AWS Organizations integration with support for institutions, projects, users, and budget monitoring.
promo.mp4
- AWS Organizations, SSO, Identity Center, and Cost Explorer integration
- Multi-institution support
- User management and budget monitoring
- Docker support with HTTP transport mode
health_check
: Check server and AWS connectionsget_institutions
: List AWS accounts from Organizationsget_projects
: Get organizational units and sub-accountsget_users
: Get users via AWS SSO/Identity Centerget_tags
: Get AWS resource tagscheck_budget
: Budget monitoring with Cost Explorerverify_email
: Verify user email (requires inia module)reset_password
: Reset user password (requires inia module)
{
"institutions": {
"sandbox": {
"aws_access_key_id": "AKIA...",
"aws_secret_access_key": "...",
"description": "Sandbox environment"
},
"aueb": {
"aws_access_key_id": "AKIA...",
"aws_secret_access_key": "...",
"description": "AUEB institution"
},
"grnet": {
"aws_access_key_id": "AKIA...",
"aws_secret_access_key": "...",
"description": "GRNET institution"
}
}
}
docker-compose up -d
pip install -r requirements.txt
python main.py --transport http --host 0.0.0.0 --port 8080
Add to your MCP client configuration:
{
"mcpServers": {
"AWSMCPServer": {
"type": "streamable-http",
"url": "http://localhost:8080/mcp",
"alwaysAllow": [
"health_check",
"get_institutions",
"get_projects",
"get_users",
"get_tags",
"check_budget"
]
}
}
}
organizations:*
sso:*
andsso-admin:*
identitystore:*
ce:*
tag:*
- "Run a health check to verify AWS connections"
- "Get all institutions"
- "Get projects for institution 'grnet' with account ID '123456789012'"
- "Get users for 'sandbox' institution"
- "Check budget for 'aueb' institution this month"