Skip to main content
Glama

Search Pulses

search_pulses
Read-onlyIdempotent

Search OTX threat-intel pulses by KEYWORD — campaign, malware family or actor name, e.g. "ransomware" or "APT29". Returns pulse ID, name, description preview, tags, targeted countries, malware families, attack IDs, and indicator count. This matches pulse titles and descriptions, so a bare indicator value (an IP, domain, hash or CVE id) will find nothing here — use lookup_indicator for those.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo1-based page (default 1)
limitNo1-50 (default 20)
queryYesSearch term

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
totalYesTotal number of pulses matching the query
pulsesYesList of pulse summaries
returnedYesNumber of pulses returned in this response

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "query": "ransomware"
      +  },
      +  {
      +    "limit": 10,
      +    "page": 1,
      +    "query": "emotet"
      +  }
      +]
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "pulses": {
      +      "description": "List of pulse summaries",
      +      "items": {
      +        "properties": {
      +          "attack_ids": {
      +            "description": "MITRE ATT&CK IDs",
      +            "items": {
      +              "type": "string"
      +            },
      +            "type": "array"
      +          },
      +          "author": {
      +            "description": "Pulse author name",
      +            "type": [
      +              "string",
      +              "null"
      +            ]
      +          },
      +          "created": {
      +            "description": "Creation timestamp",
      +            "type": [
      +              "string",
      +              "null"
      +            ]
      +          },
      +          "description": {
      +            "description": "Pulse description (truncated to 400 chars)",
      +            "type": [
      +              "string",
      +              "null"
      +            ]
      +          },
      +          "id": {
      +            "description": "Pulse ID (hex string)",
      +            "type": [
      +              "string",
      +              "null"
      +            ]
      +          },
      +          "indicators_count": {
      +            "description": "Number of indicators in pulse",
      +            "type": [
      +              "number",
      +              "null"
      +            ]
      +          },
      +          "industries": {
      +            "description": "Targeted industries",
      +            "items": {
      +              "type": "string"
      +            },
      +            "type": "array"
      +          },
      +          "malware_families": {
      +            "description": "Associated malware families",
      +            "items": {
      +              "type": "string"
      +            },
      +            "type": "array"
      +          },
      +          "modified": {
      +            "description": "Last modification timestamp",
      +            "type": [
      +              "string",
      +              "null"
      +            ]
      +          },
      +          "name": {
      +            "description": "Pulse name",
      +            "type": [
      +              "string",
      +              "null"
      +            ]
      +          },
      +          "otx_url": {
      +            "description": "OTX web URL for pulse",
      +            "type": [
      +              "string",
      +              "null"
      +            ]
      +          },
      +          "tags": {
      +            "description": "Associated tags",
      +            "items": {
      +              "type": "string"
      +            },
      +            "type": "array"
      +          },
      +          "targeted_countries": {
      +            "description": "Countries targeted by threat",
      +            "items": {
      +              "type": "string"
      +            },
      +            "type": "array"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "type": "array"
      +    },
      +    "returned": {
      +      "description": "Number of pulses returned in this response",
      +      "type": "number"
      +    },
      +    "total": {
      +      "description": "Total number of pulses matching the query",
      +      "type": "number"
      +    }
      +  },
      +  "required": [
      +    "total",
      +    "returned",
      +    "pulses"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

A4.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, fully covering the safety profile, so the bar is lower. The description adds the return field list and the matching behavior (title/description only), which adds some value beyond annotations but doesn't describe pagination or result limits beyond the schema.

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?

Three sentences, zero wasted words. The description front-loads the core purpose, lists return fields compactly, and wraps up with a critical exclusion note. Every sentence earns its place with substantive content.

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?

The tool has an output schema, so return values are documented elsewhere. The description covers purpose, exclusions, return fields, and behavioral nuance (title/description matching) — quite complete for a read-only search tool with good annotations and full schema coverage. Minor gap: no mention of result ordering or date scoping, but this is well-covered overall.

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 fully documents all 3 parameters (query, page, limit). The description adds the crucial semantic context that query matches titles/descriptions rather than indicator values, which is meaningful. However, it doesn't add format or type details beyond the schema, landing at the baseline 3.

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 uses a specific verb+resource ('Search OTX threat-intel pulses') with concrete search terms ('campaign, malware family or actor name') and even provides examples ('ransomware', 'APT29'). It clearly distinguishes itself from siblings like lookup_indicator and get_pulse by specifying the keyword-based search scope.

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

Usage Guidelines5/5

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

The description explicitly states when to use this tool (keyword search on pulse titles/descriptions) and explicitly when NOT to use it — for bare indicator values (IP, domain, hash, CVE), directing the agent to lookup_indicator as the alternative. This is fully explicit with both when and when-not guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.