Skip to main content
Glama

security_fetch_cve_watch_status

Read-onlyIdempotent

Check specified CVE watch IDs for new events since your last poll, returning only watches with updates. Efficient for scheduled monitoring.

Instructions

Check all specified CVE watches for new events since your last poll. Returns only watches with new events, making it efficient to run on a schedule. watch_ids: List of watch IDs to check — same IDs used when creating watches with security_fetch_cve_watch. Required. Uses a per-user cursor (last_polled timestamp) stored in Redis. First call returns events from the last 30 days. Subsequent calls return only events newer than the last poll. Sources: Redis (existing watch data written by security_fetch_cve_watch). No external API calls — instant response. If this tool's response does not serve the user's need, call report_feedback with feedback_type="agent_gap", tool_id="security_fetch_cve_watch_status", intended_query="{what the user needed}", gap_description="{what was missing or wrong in the result}".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
watch_idsYesList of watch IDs to check e.g. ['watch-1','watch-2']. Required.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv2.1.16
    • addedInput schema / properties / watch_ids / description
      Added value: +"List of watch IDs to check e.g. ['watch-1','watch-2']. Required."
  2. Addedv2.1.14

TDQS

A4.7/5.0
Behavior5/5

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

Beyond annotations (readOnly, idempotent, etc.), the description details internal behavior: per-user cursor in Redis, first call returning 30 days, subsequent calls returning only new events, no external API calls, instant response. No contradictions with annotations.

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 efficiently structured, starting with the main purpose, then explaining efficiency, parameter, behavior, and sources. Every sentence adds value without redundancy.

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's simplicity (one parameter, output schema exists), the description thoroughly covers purpose, parameter semantics, behavior, cursor mechanism, sources, and even a fallback action. It leaves no significant gaps.

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 schema describes watch_ids with a basic example. The description adds crucial context: these are the same IDs used when creating watches with security_fetch_cve_watch. Since schema coverage is 100%, baseline is 3, but the extra linkage raises the score.

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 clearly states the tool checks all specified CVE watches for new events since the last poll, uses a per-user cursor, and returns only watches with new events. It explicitly references the sibling tool security_fetch_cve_watch for creation, distinguishing their roles.

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 explains it is efficient for scheduling and specifies the relationship to the creation tool, implying when to use it. It also provides a fallback to report_feedback if results are insufficient. However, it does not explicitly mention when not to use it or list alternative tools beyond the implicit sibling.

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

Deploy Server

Other Tools