Skip to main content
Glama
WYRE-AI

RoboShadow MCP Server

by WYRE-AI

roboshadow_get_device_vulnerability_summary

Retrieve a device's vulnerability summary, listing per-application CVEs with CVSS scores and available WinGet upgrades, plus an overall severity rollup.

Instructions

Get the vulnerability summary for one device: per-application CVE lists (with CVSS scores and available WinGet upgrades) and an overall severity rollup.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
deviceIdYesUnique identifier for the device.
organisationIdYesThe RoboShadow organisation's UUID. Discover it with roboshadow_list_organisations.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full behavioral burden. It does disclose what the response contains: per-application CVE lists, CVSS scores, available WinGet upgrades, and a severity rollup. It does not mention read-only behavior, output format, pagination, or what happens when no vulnerabilities exist, but as a 'Get' operation the mutational implications are minimal.

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 well-structured sentence that front-loads the core resource and scope, then uses a colon to list the concrete output components. Every element earns its place, with no filler or redundant restatement of the tool name.

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

Completeness4/5

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

Given there is no output schema and no annotations, the description provides enough conceptual detail about the return value for an agent to know what it will receive. It identifies the required scope (one device), the key content areas (CVE lists, CVSS scores, WinGet upgrades, severity rollup), and the parameters are fully documented in the schema. It could be more explicit about response shape or empty results, but it is sufficiently complete for selection and invocation.

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%, and the schema already documents both parameters well, including how to discover organisationId via roboshadow_list_organisations. The description itself adds no additional parameter-level meaning beyond tying the output to one device, which matches the baseline for high schema coverage.

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 names a specific verb ('Get') and a specific resource ('vulnerability summary for one device'), then elaborates on the content: per-application CVE lists with CVSS scores, WinGet upgrades, and an overall severity rollup. This clearly differentiates it from sibling tools like roboshadow_get_vulnerable_applications or roboshadow_get_vulnerabilities_summary, which are not scoped to a single device in the same way.

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

Usage Guidelines3/5

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

The intended use is implied by the phrase 'for one device' and by the resource name, so an agent can infer this is the right tool when it needs a device-scoped vulnerability summary. However, there is no explicit statement of when to use this tool versus alternatives, nor any exclusion conditions or named sibling routes.

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