Snyk API & Web MCP Server for VS Code
io.github.snyk/saw-mcp
MCP server for Snyk API & Web — DAST scanning, findings management, and vulnerability triage
client:VS Code
transport:stdio
runtime:pypi
Install Snyk API & Web MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mcp-saw-api-key",
"description": "MCP_SAW_API_KEY",
"password": true
}
],
"servers": {
"saw-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"snyk-apiweb-mcp"
],
"env": {
"MCP_SAW_API_KEY": "${input:mcp-saw-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