compare_library_security
Analyze and compare security scores of multiple libraries to make informed decisions. Provides rankings and recommendations based on specified package ecosystems like PyPI.
Instructions
Compare security scores across multiple libraries to help with selection.
Args:
libraries: List of library names to compare
ecosystem: Package ecosystem for all libraries
Returns:
Security comparison with rankings and recommendations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ecosystem | No | PyPI | |
libraries | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ecosystem": {
"default": "PyPI",
"title": "Ecosystem",
"type": "string"
},
"libraries": {
"items": {
"type": "string"
},
"title": "Libraries",
"type": "array"
}
},
"required": [
"libraries"
],
"title": "compare_library_securityArguments",
"type": "object"
}