snyk_scan_library
Perform a security scan on a specified library using Snyk to identify vulnerabilities, analyze licenses, and receive remediation guidance. Input library name, version, and ecosystem to generate a detailed security report.
Instructions
Scan a library using Snyk for comprehensive security analysis.
Args:
library_name: Name of the library to scan
version: Version of the library (default: "latest")
ecosystem: Package ecosystem ("pypi", "npm", "maven", etc.)
Returns:
Detailed security report from Snyk including vulnerabilities, licenses, and remediation advice
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ecosystem | No | pypi | |
library_name | Yes | ||
version | No | latest |
Input Schema (JSON Schema)
{
"properties": {
"ecosystem": {
"default": "pypi",
"title": "Ecosystem",
"type": "string"
},
"library_name": {
"title": "Library Name",
"type": "string"
},
"version": {
"default": "latest",
"title": "Version",
"type": "string"
}
},
"required": [
"library_name"
],
"title": "snyk_scan_libraryArguments",
"type": "object"
}