Cyntrisec CLI (Historical) for VS Code
io.github.cyntrisec/cyntrisec
Historical AWS analysis CLI; not a current Cyntrisec product.
client:VS Code
transport:stdio
runtime:pypi
Install Cyntrisec CLI (Historical) in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "aws-profile",
"description": "AWS_PROFILE",
"password": true
},
{
"type": "promptString",
"id": "aws-default-region",
"description": "AWS_DEFAULT_REGION",
"password": true
},
{
"type": "promptString",
"id": "aws-access-key-id",
"description": "AWS_ACCESS_KEY_ID",
"password": true
},
{
"type": "promptString",
"id": "aws-secret-access-key",
"description": "AWS_SECRET_ACCESS_KEY",
"password": true
}
],
"servers": {
"cyntrisec": {
"type": "stdio",
"command": "uvx",
"args": [
"cyntrisec"
],
"env": {
"AWS_PROFILE": "${input:aws-profile}",
"AWS_DEFAULT_REGION": "${input:aws-default-region}",
"AWS_ACCESS_KEY_ID": "${input:aws-access-key-id}",
"AWS_SECRET_ACCESS_KEY": "${input:aws-secret-access-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs