Skip to main content
Glama
WYRE-AI

Bitdefender GravityZone MCP Server

by WYRE-AI

bitdefender_get_endpoint

Retrieve complete details for a managed endpoint by endpoint ID: power state, IP address, last-seen timestamp, agent engine/product versions, license status, and update/outdated flags.

Instructions

Get full detail for one managed endpoint: power state, IP, last-seen timestamp, and the installed security agent's engine/product versions, license status, and update/outdated flags. Requires an endpoint ID from bitdefender_list_endpoints.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endpointIdYesEndpoint ID, from bitdefender_list_endpoints.

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 explicitly lists the returned data (power state, IP, last-seen, agent versions, license status, update flags) and the prerequisite (endpoint ID from the list call). It does not discuss error handling or side effects, but 'Get' clearly implies a safe read 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 a compact two-sentence definition that front-loads the core purpose and then lists the specific return fields. Every clause adds value; there is no redundant phrasing or 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 one-parameter read tool with no output schema, the description is complete: it states what the tool returns, clarifies the required input, and points to the sibling that supplies it. Nothing an agent needs to correctly invoke this tool 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?

The schema already provides 100% coverage for the single parameter, describing endpointId as 'Endpoint ID, from bitdefender_list_endpoints.' The description repeats this same information, adding no new semantic detail beyond what the schema provides, so the baseline of 3 applies.

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 identifies the verb ('Get'), the resource ('full detail for one managed endpoint'), and enumerates the exact data fields returned. It distinguishes itself from sibling bitdefender_list_endpoints by describing a single-endpoint detail operation rather than a listing operation.

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 explicitly instructs that an endpoint ID from bitdefender_list_endpoints is required, establishing a clear prerequisite and implying the sequential use case. It does not explicitly contrast with sibling tools or state when not to use it, but the single-endpoint vs. list distinction is clear enough.

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