Skip to main content
Glama
WYRE-AI

Bitdefender GravityZone MCP Server

by WYRE-AI

bitdefender_list_policies

Lists account security policies with ID, name, and owning company, providing the policy ID needed for detailed policy retrieval.

Instructions

List security policies available to the account (id, name, owning company). Policy IDs from this response are required by bitdefender_get_policy. 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 and does well: 'List' signals a read operation, account scoping is stated, and the paginated envelope with field names is disclosed. It does not mention auth requirements or rate limits, but those are not critical for a simple listing operation.

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 compact: one sentence for purpose and fields, one for the downstream dependency, and one for the response envelope. No wasted words, and the most important operational facts 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?

For a simple, read-only listing tool with two optional parameters and no output schema, the description is complete: it covers what the tool returns, the pagination shape, the item fields, and the relationship to bitdefender_get_policy. Nothing essential for correct invocation is missing.

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 the schema already documents page and perPage. The description's mention of a paginated envelope adds relevant context but does not add new semantics beyond what the parameter descriptions already convey, so the baseline score of 3 is appropriate.

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 uses a specific verb-resource pair ('List security policies available to the account') and names the returned fields, so there is no ambiguity. It also distinguishes this tool from sibling list tools by focusing on security policies and explicitly linking its output to bitdefender_get_policy.

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 clearly states the primary use case: obtain policy IDs that then feed into bitdefender_get_policy. It does not explicitly contrast with sibling list tools, but the domain focus ('security policies') makes the appropriate context evident.

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