stackhawk for VS Code
com.stackhawk/stackhawk
An MCP server that provides interaction with StackHawk's security scanning platform.
client:VS Code
transport:stdio
runtime:pypi
Install stackhawk in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "stackhawk-api-key",
"description": "STACKHAWK_API_KEY",
"password": true
}
],
"servers": {
"stackhawk": {
"type": "stdio",
"command": "uvx",
"args": [
"stackhawk-mcp"
],
"env": {
"STACKHAWK_API_KEY": "${input:stackhawk-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs