pulsedive_indicator

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

Is this IP/domain/URL/hash malicious — risk score + threats. Looks up an indicator of compromise (IOC) in Pulsedive and returns its risk level, contributing risk factors, associated threats, and intel feeds. Example: pulsedive_indicator({ indicator: “8.8.8.8”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
indicatorstringyesThe IOC to look up — an IP, domain, URL, or file hash. e.g. “1.2.3.4”, “example.com”, “http://bad.tld/x
_apiKeystringyesPulsedive API key (free tier 50/day at pulsedive.com)

Example call

Arguments

{
  "indicator": "8.8.8.8",
  "_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_indicator","arguments":{"indicator":"8.8.8.8","_apiKey":"your-pulsedive-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('pulsedive_indicator', {
  "indicator": "8.8.8.8",
  "_apiKey": "your-pulsedive-api-key"
});

More examples

{
  "indicator": "example.com",
  "_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