From architect
Connects remotely to AWS MCP server (us-east-1.api.aws/mcp) for cloud resource access, service management, and AWS tools. Requires AWS credentials.
npx claudepluginhub navraj007in/architecture-cowork-plugin --plugin architectAdd to your .mcp.json:
{
"mcpServers": {
"aws": {
"command": "npx",
"args": [
"-y",
"awslabs/mcp"
],
"env": {
"AWS_REGION": "${AWS_REGION}",
"AWS_ACCESS_KEY_ID": "${AWS_ACCESS_KEY_ID}",
"AWS_SECRET_ACCESS_KEY": "${AWS_SECRET_ACCESS_KEY}"
}
}
}
}Replace placeholder values for: AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY
This MCP server needs API keys or credentials. Configure them in your environment before use.
npxAWS_REGION=${AWS_REGION}AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}