Skip to main content
Glama
Abraar02

ThreatWatch MCP

by Abraar02

Run Monitor Cycle

run_monitor_cycle

Manually trigger an immediate IOC monitoring cycle to re-scan all watched indicators without waiting for the next scheduled interval; returns checked and alert counts.

Instructions

Manually trigger a monitoring cycle — re-scans all watched IOCs immediately rather than waiting for the next scheduled interval.

Returns: Summary of how many IOCs were checked and how many triggered alerts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.9/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 does disclose a meaningful side effect — that a manual run re-scans all watches and can produce alerts — but says nothing about cost, rate limits, permissions, or whether it can collide with an in-flight scheduled cycle.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two tight, front-loaded sentences with no filler, and the trigger semantics come first. The 'Returns:' block is mildly redundant given that an output schema already exists, which keeps it short of a 5.

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?

For a zero-parameter trigger with an output schema, the description covers the only things an agent needs: what it does, that it affects all watches immediately, and that alerts may follow. Nothing essential is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool takes zero parameters, so there is nothing for the description to disambiguate; the baseline for a no-parameter tool applies.

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?

States a specific verb and resource ('manually trigger a monitoring cycle') and clarifies scope ('re-scans all watched IOCs'), which separates it from the single-IOC siblings like analyze_ioc. It never names a sibling tool outright, so differentiation is implied rather than explicit.

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

Usage Guidelines4/5

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

The phrase 'rather than waiting for the next scheduled interval' gives a clear condition for reaching for this tool (need an immediate rescan). There is no explicit when-not guidance, no mention of the alternative tools, and no note on whether it should be run alongside a scheduled cycle.

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