loading…
Search for a command to run...
loading…
Enables interaction with the Veracode platform to perform security tasks like running SAST scans, checking SCA vulnerabilities, and retrieving CVE information.
Enables interaction with the Veracode platform to perform security tasks like running SAST scans, checking SCA vulnerabilities, and retrieving CVE information. It allows AI assistants to manage scan workflows, from zipping source code to analyzing scan results through natural language.
1. Install
pip install -r requirements.txt
2. Add credentials to .env
VERACODE_API_ID=your_api_id
VERACODE_API_KEY=your_api_key
Get these from Veracode Platform → My Profile → API Credentials
3. Add to .cursor/mcp.json
{
"mcpServers": {
"veracode": {
"command": "python",
"args": ["server.py"],
"cwd": "C:/path/to/veracode-mcp"
}
}
}
Set
cwdto the full path of theveracode-mcpfolder on your machine.
Examples:
- Windows:
"cwd": "C:/Users/you/veracode-mcp"- macOS/Linux:
"cwd": "/home/you/veracode-mcp"Not sure of the path? Run this in your terminal to print it:
# Windows (PowerShell) (Get-Item .\veracode-mcp).FullName # macOS / Linux realpath ./veracode-mcp
Restart Cursor — that's it. Ask Cursor to run a Veracode scan and it will use the tools automatically.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"veracode-mcp": {
"command": "npx",
"args": []
}
}
}