Skip to main content
Glama
Cyreslab-AI

ransomware-live-mcp-server

get_group_info

Read-only

Obtain detailed profile of a ransomware group, including its operations, victims, and technical indicators.

Instructions

Get detailed information about a specific ransomware group

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
groupYesName of the ransomware group

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
parserNo
captiveNo
profileNo
countriesNo
locationsNo
descriptionNo
javascript_renderNo

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?

The annotations already declare readOnlyHint=true and openWorldHint=true, so the description need not re-establish the safety profile. The description adds little behavioral context beyond 'detailed information', but it is consistent with the annotations and does not contradict them.

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, front-loaded sentence that immediately conveys the tool's action and target. There is no wasted wording or redundant repetition of the tool name.

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?

This is a simple one-parameter, read-only lookup with a full input schema, an output schema, and safety annotations. The description plus structured metadata supplies everything an agent needs to invoke it correctly; return values are already covered by the output schema.

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%, with the 'group' parameter already documented as 'Name of the ransomware group'. The description's 'specific ransomware group' adds minimal meaning beyond the schema, 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.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear verb ('Get') and resource ('detailed information about a specific ransomware group'), and the word 'specific' correctly signals that this targets one group rather than all groups. It does not explicitly differentiate from close siblings like get_group_victims, but the purpose is not vague or tautological.

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 phrase 'specific ransomware group' implies this tool is for retrieving details about a single named group, which helps distinguish it from get_all_groups. However, it provides no explicit guidance about when to prefer this over get_group_victims or get_all_groups, and no exclusions or alternatives are named.

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