Skip to main content
Glama
Abraar02

ThreatWatch MCP

by Abraar02

Detect Iocs In Text

detect_iocs_in_text

Scan freeform text such as logs, incident reports, or paste content to extract IPs, domains, URLs, and file hashes for threat analysis.

Instructions

Extract all IOCs (IPs, domains, URLs, hashes) from freeform text such as log files, incident reports, or paste-bin content.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesRaw text to scan for indicators.
auto_analyzeNoIf True, automatically analyse each discovered IOC.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It discloses the extraction scope and IOC types, but omits details such as whether extraction is deduplicated, ordered, limited by input size, or whether auto_analyze triggers side effects.

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 with no wasted words. It states the action, resources, and input context efficiently.

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 the output schema exists, return values need not be explained. Parameter semantics are covered by the schema, and the description adequately frames the tool's purpose, though it could add more when-to-use guidance for the sibling analysis tools.

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 both parameters are already documented in the input schema. The description adds no parameter-specific syntax or behavior beyond what the schema provides, making the baseline 3 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 and resource: extract all IOCs from freeform text. It names the IOC types (IPs, domains, URLs, hashes) and input sources, making it distinguishable from sibling analysis tools like analyze_ioc and bulk_analyze.

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 through examples such as log files, incident reports, and paste-bin content, but it does not explicitly say when to use this tool instead of analyze_ioc or bulk_analyze. No alternatives or exclusions are named.

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