Skip to main content
Glama

get_cve_info

Identify the right exploitation skills, modules, and install status for any CVE ID or nickname, and get ready-to-run curl commands for live CVSS, CISA KEV, and EPSS data.

Instructions

Map a CVE to the toolkit's tools, skills, and modules, plus live-lookup commands.

Local-first and deterministic: accepts a CVE id (e.g. "CVE-2021-44228") or a common nickname (e.g. "log4shell", "eternalblue", "zerologon", "printnightmare") and returns the curated exploitation skills, mapped registry tools with install status, and relevant modules.

For live CVSS / CISA KEV / EPSS data it returns ready-to-run run_tool("curl", ...) commands rather than fetching itself — those hit external hosts and are subject to the CYBERSEC_MCP_ALLOW_EXTERNAL policy. Always clear the authorization-gate skill before testing.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cveYesA CVE id (CVE-YYYY-NNNN) or a known vulnerability nickname.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.2.0

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It comprehensively explains that the tool is local-first and deterministic, does not fetch external data itself, returns ready-to-run curl commands instead, is subject to the CYBERSEC_MCP_ALLOW_EXTERNAL policy, and requires clearing the authorization-gate skill before testing. This is far beyond minimal transparency.

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

Conciseness5/5

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

The description is tightly structured: a one-line purpose, then input/output behavior, then critical caveats about external data and authorization. Every sentence adds meaningful information without redundancy or filler, and the most important constraints are front-loaded.

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

Completeness5/5

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

Given the tool has one parameter, an output schema, and moderate complexity, the description covers all essential operational context: what results are returned, local-first deterministic behavior, external-data handling via curl commands, policy dependency, and the authorization gate. An agent has enough guidance to invoke the tool correctly and interpret its outputs.

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?

The input schema already fully describes the single 'cve' parameter with 100% coverage. The description adds valuable concrete examples (CVE-2021-44228, log4shell, eternalblue, zerologon, printnightmare) and reinforces accepted formats, making parameter usage clearer than the schema alone.

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

Purpose5/5

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

The description opens with a specific verb and resource: 'Map a CVE to the toolkit's tools, skills, and modules, plus live-lookup commands.' It clearly distinguishes this from sibling tools by centering on a CVE identifier/nickname and the mapping output, rather than generic tool/module info or CTF/bounty suggestions.

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

Usage Guidelines4/5

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

The description gives clear context for when to use this tool: when you have a CVE id or known nickname and want curated exploitation skills, mapped tools, and relevant modules. It does not explicitly state when not to use it or name alternative tools, but the local-first deterministic behavior and live-lookup command pattern make the intended use apparent.

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