get_security_summary
Retrieve a concise security overview for a library, including score and basic recommendations, based on its ecosystem. Simplifies evaluating library security without detailed vulnerability lists.
Instructions
Get quick security overview for a library without detailed vulnerability list.
Args:
library_name: Name of the library
ecosystem: Package ecosystem (default: PyPI)
Returns:
Concise security summary with score and basic recommendations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ecosystem | No | PyPI | |
library_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ecosystem": {
"default": "PyPI",
"title": "Ecosystem",
"type": "string"
},
"library_name": {
"title": "Library Name",
"type": "string"
}
},
"required": [
"library_name"
],
"title": "get_security_summaryArguments",
"type": "object"
}