recent_iocs

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

IOCs added to ThreatFox in the last N days. Useful for daily threat-intel ingestion.

Parameters

NameTypeRequiredDescription
daysnumbernoLookback days (1-7, default 3)

Example call

Arguments

{
  "days": 3
}

curl

curl -X POST https://gateway.pipeworx.io/threatfox/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"recent_iocs","arguments":{"days":3}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('recent_iocs', {
  "days": 3
});

More examples

{
  "days": 7
}

Response shape

Always returns: query, status, count, results

FieldTypeDescription
querystringThe query type sent (get_iocs)
statusstring | nullQuery status (ok, no_result, or null)
countintegerNumber of results returned
resultsarrayIOCs added in the last N days
Full JSON Schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "The query type sent (get_iocs)"
    },
    "status": {
      "type": [
        "string",
        "null"
      ],
      "description": "Query status (ok, no_result, or null)"
    },
    "count": {
      "type": "integer",
      "description": "Number of results returned"
    },
    "results": {
      "type": "array",
      "description": "IOCs added in the last N days",
      "items": {
        "type": "object"
      }
    }
  },
  "required": [
    "query",
    "status",
    "count",
    "results"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 7, 2026