pulsedive_explore

Pack: pulsedive · Endpoint: https://gateway.pipeworx.io/pulsedive/mcp

Search Pulsedive threat DB with a query. Uses the Pulsedive Explore query language (boolean field filters) to find indicators matching criteria like type, risk, feed, or threat. Example: pulsedive_explore({ q: “type=domain and risk=high”, limit: 20, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
qstringyesExplore query, e.g. “type=domain and risk=high”, “ioc=*.ru and threat=emotet”
limitnumbernoMax results to return (default 20, max 50)
_apiKeystringyesPulsedive API key

Example call

Arguments

{
  "q": "type=domain and risk=high",
  "limit": 20,
  "_apiKey": "your-pulsedive-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/pulsedive/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"pulsedive_explore","arguments":{"q":"type=domain and risk=high","limit":20,"_apiKey":"your-pulsedive-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('pulsedive_explore', {
  "q": "type=domain and risk=high",
  "limit": 20,
  "_apiKey": "your-pulsedive-api-key"
});

More examples

{
  "q": "threat=emotet and type=ip",
  "_apiKey": "your-pulsedive-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "pulsedive": {
      "url": "https://gateway.pipeworx.io/pulsedive/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026