get_pulse
Pack: alienvault-otx · Endpoint: https://gateway.pipeworx.io/alienvault-otx/mcp
Fetch a single OTX pulse: full description, references, indicators, attack IDs, targeted countries, malware families, industries, and creation/modification dates.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
pulse_id | string | yes | OTX pulse ID (hex string) |
Example call
curl -X POST https://gateway.pipeworx.io/alienvault-otx/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_pulse","arguments":{}}}'
Response shape
Always returns: id, name, description, author, created, modified, tags, targeted_countries, malware_families, attack_ids, industries, indicators_count, otx_url
| Field | Type | Description |
|---|---|---|
id | string | null | Pulse ID (hex string) |
name | string | null | Pulse name |
description | string | null | Full pulse description (up to 8000 chars) |
author | string | null | Pulse author name |
created | string | null | Creation timestamp |
modified | string | null | Last modification timestamp |
tags | array | Associated tags |
targeted_countries | array | Countries targeted by threat |
malware_families | array | Associated malware families |
attack_ids | array | MITRE ATT&CK IDs |
industries | array | Targeted industries |
indicators_count | number | null | Number of indicators in pulse |
otx_url | string | null | OTX web URL for pulse |
indicators | array | Full list of indicators (IPs, domains, URLs, hashes) |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": [
"string",
"null"
],
"description": "Pulse ID (hex string)"
},
"name": {
"type": [
"string",
"null"
],
"description": "Pulse name"
},
"description": {
"type": [
"string",
"null"
],
"description": "Full pulse description (up to 8000 chars)"
},
"author": {
"type": [
"string",
"null"
],
"description": "Pulse author name"
},
"created": {
"type": [
"string",
"null"
],
"description": "Creation timestamp"
},
"modified": {
"type": [
"string",
"null"
],
"description": "Last modification timestamp"
},
"tags": {
"type": "array",
"description": "Associated tags",
"items": {
"type": "string"
}
},
"targeted_countries": {
"type": "array",
"description": "Countries targeted by threat",
"items": {
"type": "string"
}
},
"malware_families": {
"type": "array",
"description": "Associated malware families",
"items": {
"type": "string"
}
},
"attack_ids": {
"type": "array",
"description": "MITRE ATT&CK IDs",
"items": {
"type": "string"
}
},
"industries": {
"type": "array",
"description": "Targeted industries",
"items": {
"type": "string"
}
},
"indicators_count": {
"type": [
"number",
"null"
],
"description": "Number of indicators in pulse"
},
"otx_url": {
"type": [
"string",
"null"
],
"description": "OTX web URL for pulse"
},
"indicators": {
"type": "array",
"description": "Full list of indicators (IPs, domains, URLs, hashes)",
"items": {
"type": "object"
}
}
},
"required": [
"id",
"name",
"description",
"author",
"created",
"modified",
"tags",
"targeted_countries",
"malware_families",
"attack_ids",
"industries",
"indicators_count",
"otx_url"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"alienvault-otx": {
"url": "https://gateway.pipeworx.io/alienvault-otx/mcp"
}
}
}
See Getting Started for client-specific install steps.