Skip to main content
Glama
Cyreslab-AI

ransomware-live-mcp-server

get_recent_victims

Read-only

Retrieve recently disclosed ransomware victims, with a configurable limit up to 1000. Monitor current ransomware disclosures to stay informed.

Instructions

Get the latest disclosed ransomware victims

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of victims to return (max 1000)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already cover read-only and open-world behavior, and the description adds the useful 'disclosed' framing and recency scope. It does not specify ordering semantics or what 'latest' precisely means, but the annotations lower the bar and no contradiction exists.

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 front-loaded sentence with no filler. Every word contributes to understanding the tool's purpose.

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?

With an output schema, read-only/open-world annotations, and one optional parameter, the definition provides everything an agent needs to select and invoke the tool correctly. Any minor ambiguity about ordering is already implied by 'latest'.

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 only parameter, limit, is fully documented in the input schema with type, range, and description, so schema coverage is 100%. The description adds no additional parameter nuance, 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?

States a specific verb ('Get') and resource ('latest disclosed ransomware victims'), and the word 'latest' differentiates it from date-range, search, and sector-specific victim tools. The purpose is unmistakable and distinct from siblings.

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

Usage Guidelines2/5

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

The description gives no guidance about when to choose this tool over alternatives such as get_victims_by_date, search_victims, or get_sector_victims. The only implied usage is the word 'latest', with no explicit when/when-not or alternative naming.

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