aws-assistant-mcp-server
v1.0.2
Published
MCP server for AWS IAM policy management
Maintainers
Readme
AWS Assistant MCP Server
An MCP (Model Context Protocol) server for AWS IAM policy management.
Features
- Get IAM role policies
- Retrieve policy documents
- Update policy documents with version management
Installation
npm install -g aws-assistant-mcp-serverUsage
With Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"aws-assistant": {
"command": "aws-assistant-mcp"
}
}
}Standalone
aws-assistant-mcpAWS Configuration
Ensure AWS credentials are configured via:
- AWS CLI (
aws configure) - Environment variables (
AWS_ACCESS_KEY_ID,AWS_SECRET_ACCESS_KEY) - IAM roles (if running on EC2)
Tools Available
greet- Test the serverget_role_policies- Get policies attached to an IAM roleget_policy_document- Retrieve policy document by ARNupdate_policy_document- Update policy with new document
Publishing
To publish this package:
- Update version in package.json
- Run
npm publish
Development
git clone <repository>
cd aws-assistant-mcp-server
npm install
npm start