Skip to main content
Glama

epss_timeseries

Get the historical EPSS time series for a specific CVE.

What this tool does

Returns the historical EPSS score, percentile, and model version available for a CVE across time, ordered by date. Useful for analyzing how exploitability likelihood has evolved over time.

When to use this tool

Use this tool when the user asks about:

  • EPSS trend over time

  • how exploitability probability changed

  • whether EPSS spiked or dropped

  • historical comparison of risk

If the user only wants the current EPSS score, use vulnerability_score instead.

Inputs

  • cve_id: valid CVE identifier (CVE-YYYY-NNNNN).

Outputs

  • series: array of objects, each containing:

    • date: measurement date in ISO format

    • score: EPSS score

    • percentile: EPSS percentile

    • model: EPSS model version

LLM usage guidelines

  • Never guess EPSS values-use this tool for all EPSS time-series questions.

  • If cve_id is malformed or incomplete, ask the user to correct it before calling.

  • If the user mentions multiple CVEs, call the tool once per CVE as needed.

  • If no historical data is available, return an empty series and state that no EPSS history was found.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cve_idYesCVE identification (CVE-YYYY-NNNNN)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
seriesNo

TDQS

A4.7/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses the return structure (series with date, score, percentile, model), ordering by date, and handles the empty-series edge case. However, it does not explicitly state that the tool is read-only or describe any potential side effects, which is a minor gap for a retrieval tool.

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 well-structured with clear headers: purpose, when to use, inputs, outputs, and LLM guidelines. It is detailed but not verbose; each sentence serves a purpose, and the most critical information is 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?

The tool has only one parameter, an output schema, and no annotations. The description covers everything needed: what the tool does, when to use it, input format, output structure, and edge-case behavior (no history). It also distinguishes from a sibling tool, making it contextually 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 coverage is 100%, so the baseline is 3. The description adds value by specifying the CVE format ('CVE-YYYY-NNNNN') and providing guidance on handling malformed IDs (asking the user to correct). This goes beyond the schema's minimal description.

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: 'Get the historical EPSS time series for a specific CVE.' It clearly identifies the tool's scope (historical time series) and differentiates from the sibling `vulnerability_score` by explicitly stating that tool covers current EPSS scores.

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

Usage Guidelines5/5

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

Includes a dedicated 'When to use this tool' section listing concrete user intents (e.g., 'EPSS trend over time', 'whether EPSS spiked or dropped') and provides an explicit alternative: 'If the user only wants the current EPSS score, use `vulnerability_score` instead.' Also includes LLM-specific directives like never guessing values and handling malformed CVE IDs.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.7/5.0
Disambiguation4/5

Most tools have clearly distinct purposes (e.g., vulnerability_search for discovery, vulnerability_info for full details, vulnerability_score for CVSS/EPSS, epss_timeseries for history). However, pairs like vulnerability_info vs. vulnerability_score and linux_audit vs. purl_audit have overlapping functionality, though detailed descriptions help differentiate them.

Naming Consistency5/5

All tool names follow a consistent lowercase snake_case pattern with a descriptor and an operation noun (e.g., vulnerability_info, linux_audit, sightings_search, ssvc_calculator). No mixed conventions or stylistic deviations are present.

Tool Count5/5

The 11 tools are well-scoped for a vulnerability intelligence server, covering search, details, scoring, trends, audits, reports, and prioritization. The count is within the expected 3-15 range and each tool contributes a distinct capability.

Completeness5/5

The tool surface covers the full vulnerability intelligence lifecycle: discovery (vulnerability_search), detailed lookup (vulnerability_info), risk scoring (vulnerability_score), EPSS history, real-world sightings, SSVC prioritization, audits for both OS packages and application dependencies, and aggregated reports. No obvious dead-end or missing critical operation is apparent.

Resources