Skip to main content
Glama
ZeroSOC

defender-xdr

by ZeroSOC

defender_get_vulnerabilities

Read-only

Retrieve vulnerabilities affecting your organization, with optional filters for severity or public exploit status to prioritize remediation.

Instructions

List the vulnerabilities that affect the organization, e.g. filter "severity eq 'Critical'" or "publicExploit eq true".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
topNoMaximum number of vulnerabilities to return (default 25, max 100).
skipNoNumber of entries to skip (paging).
filterNoOData $filter expression. Refine the filter instead of paging deep.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is known. The description adds no behavioral context beyond those annotations, such as what fields are returned, whether pagination is automatic, or how the openWorldHint affects results. It does not contradict annotations, but it also does not enrich them.

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 a single, focused sentence with immediately practical examples. The core purpose is front-loaded ('List the vulnerabilities...') and the filter examples earn their place by clarifying usage. There is no filler or redundant repetition of schema information.

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

Completeness3/5

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

For a read-only list tool with no required parameters and full schema coverage, the description covers the essential use case. However, it does not describe the return shape (e.g., list of vulnerability objects with CVE id, severity, etc.) despite lacking an output schema, and it does not clarify how this list relates to siblings like defender_get_machines_by_vulnerability, leaving some contextual gaps for an agent.

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%, but the description adds valuable filter syntax examples ('severity eq 'Critical'' or 'publicExploit eq true'), which clarify how to compose OData filter expressions beyond the schema's generic '$filter' description. This meaningfully helps an agent construct valid calls, though top/skip semantics are already fully described in the schema.

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?

The description uses a specific verb-resource pair ('List the vulnerabilities that affect the organization') and gives concrete filter examples, clearly identifying the resource scope as organization-wide. It implicitly distinguishes from sibling tools like defender_get_machine_vulnerabilities (per-machine) and defender_get_vulnerability_by_id (single entity), though it does not explicitly name them.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives such as defender_get_machine_vulnerabilities, defender_get_recommendations, or defender_get_vulnerability_by_id. The filter examples show how to narrow results but do not clarify when the organization-level list is preferred over per-machine or per-software lists, leaving selection to the agent's inference.

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