Skip to main content
Glama
WYRE-AI

RoboShadow MCP Server

by WYRE-AI

roboshadow_get_scan_ips_overview

Retrieve a per-target breakdown of an external vulnerability scan, showing CVE counts by severity, open ports, and component scan status for each scanned IP.

Instructions

Get a per-target breakdown of one external vulnerability scan: CVE counts by severity, open-port counts, and component scan statuses for each scanned IP.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
scanIdYesUnique identifier for the vulnerability scan.
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 burden. It clearly discloses the operation is a read (get) and describes the output shape (per-IP breakdown with CVE counts, port counts, component statuses). However, it does not disclose pagination, filtering, or whether the scan must be external-only, which is implied by 'external vulnerability scan' but not enforced or explained.

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?

A single, well-structured sentence that front-loads the resource and scope, then lists the exact data elements returned. No wasted words.

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?

For a read-only tool with two fully documented parameters and no output schema, the description is nearly complete. It clearly states what the response contains. The only minor gap is not explicitly stating when to use this versus the scan summary or vulnerabilities summary siblings, but the per-IP breakdown wording makes the distinction reasonably clear.

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 both parameters. The description adds the context that scanId refers to an external vulnerability scan and that organisationId is a UUID, but it does not add meaning beyond the schema's own descriptions. Baseline 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 states a specific verb ('Get'), a specific resource ('per-target breakdown of one external vulnerability scan'), and the exact contents (CVE counts by severity, open-port counts, component scan statuses per IP). This clearly distinguishes it from sibling tools like roboshadow_get_scan_summary or roboshadow_get_vulnerabilities_summary.

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 description implies usage context: it is for a single external vulnerability scan and returns per-IP detail. However, it does not explicitly state when to choose this over alternatives like roboshadow_get_scan_summary or roboshadow_get_vulnerabilities_summary, nor does it mention any exclusions or prerequisites beyond the required parameters.

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