vul_db_update_status
Check the status and last update timestamps of databases used by the CVE-Search API to ensure accurate and current vulnerability data.
Instructions
To get more information about the current databases in use and when it was updated
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- main.py:72-78 (handler)Handler function for the 'vul_db_update_status' tool, decorated with @mcp.tool() for registration. Fetches database update status from the CVE search API using get_requests helper.@mcp.tool() def vul_db_update_status() -> Dict[str, Any]: """ To get more information about the current databases in use and when it was updated """ uri = f"dbInfo" return get_requests(uri)