Skip to main content
Glama
WYRE-AI

Bitdefender GravityZone MCP Server

by WYRE-AI

bitdefender_list_blocklist_items

View file hashes on the account's blocklist, including hash type, source, and filename. Paginate through results to audit blocked items without modifying the list.

Instructions

List file hashes present in the account's Blocklist - hash, hash algorithm (SHA256/MD5), source (incident/import/manual), source description, and filename where known. Read-only - this connector never adds to or removes from the Blocklist (addToBlocklist/removeFromBlocklist are excluded; see README's Scope section). Returns a paginated envelope: page/pagesCount/perPage/total/items.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoResults page number (1-based). Defaults to 1.
perPageNoItems per page (max 100). Defaults to 30.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/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 of behavioral disclosure. It clearly discloses the read-only safety profile and the paginated response envelope (page/pagesCount/perPage/total/items). It does not cover rate limits or auth errors, but for a simple list operation this is adequate.

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?

Three sentences, each earning its place: what is listed, the read-only guarantee, and the response shape. The most important information is front-loaded and there is no filler.

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?

For a simple list endpoint with no required parameters and no output schema, the description is complete: it names the resource, output fields, safety behavior, and pagination envelope. An agent has everything needed to select and invoke this tool correctly.

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

Parameters3/5

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

Schema description coverage is 100%, so page and perPage are already fully documented. The description only mentions the paginated envelope, which corroborates but does not add significant meaning beyond the schema.

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 specifies the action ('List'), the resource ('file hashes present in the account's Blocklist'), and the returned fields (hash, algorithm, source, source description, filename). This distinguishes it from sibling list tools like bitdefender_list_endpoints or bitdefender_list_policies, which target different resources.

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: use this tool to view blocklist file hashes, and it explicitly states the tool is read-only and will never add/remove entries. It does not name an alternative tool to use for mutation, but the sibling set contains no competing blocklist tool, so the guidance is sufficient.

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