Skip to main content
Glama

get_latest_critical_cves

Retrieve recently published critical CVEs from the synchronized vulnerability database by days, CVSS score, and record limit to prioritize urgent patching.

Instructions

Fetch newly published critical vulnerabilities from the synchronized database.

Args: days: Past calendar days to search (1-90, default: 7). min_cvss: Minimum base CVSS score threshold (7.0-10.0, default: 9.0). limit: Number of records to retrieve (1-50, default: 10).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
daysNo
limitNo
min_cvssNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full behavioral burden, yet it only offers the vague phrase 'synchronized database.' It does not state auth requirements, rate limits, sort order, or whether this is read-only (implied by 'Fetch' but unconfirmed). Return format is covered by the output schema, so that omission is acceptable.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One front-loaded purpose sentence followed by a compact, conventional Args block; nothing is redundant. Slightly more value could be added within the same footprint, but there is no wasted text.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With an output schema present, return values need not be described, and all three parameters are fully documented with ranges and defaults. The main gap is the absence of behavioral context (source freshness, ordering, permissions) for an unannotated tool, but the core calling contract is complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate, and it does: it documents all three parameters with meaning, valid ranges (days 1-90, min_cvss 7.0-10.0, limit 1-50) and defaults beyond what the bare schema shows. Only minor interpretive detail (e.g., what 'critical' implies relative to min_cvss) is missing.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource with scope: 'Fetch newly published critical vulnerabilities from the synchronized database.' Combined with the name, an agent understands this returns recent high-severity CVEs, distinct in spirit from get_cve_details (single CVE) and get_top_kevs (KEV catalog), though it never explicitly names or contrasts those siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage is only implied: the 'newly published' framing plus the days parameter signals a recency-scan use case, but there is no explicit when-to-use, when-not-to-use, or routing guidance versus search_vulnerabilities or get_top_kevs. An agent must infer when this beats a general search.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.