search

Pack: urlscan-io · Endpoint: https://gateway.pipeworx.io/urlscan-io/mcp

Search past scans (keyless).

Parameters

NameTypeRequiredDescription
querystringyes
sizenumberno
search_afterstringno

Example call

Arguments

{
  "query": "phishing"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search', {
  "query": "phishing"
});

More examples

{
  "query": "malware",
  "size": 50,
  "search_after": "2024-01-15"
}

Response shape

FieldTypeDescription
resultsarrayArray of scan results matching the query
totalnumberTotal number of results available
has_morebooleanWhether more results are available
tooknumberQuery execution time in milliseconds
Full JSON Schema
{
  "type": "object",
  "description": "Search results from urlscan.io",
  "properties": {
    "results": {
      "type": "array",
      "description": "Array of scan results matching the query",
      "items": {
        "type": "object",
        "properties": {
          "task": {
            "type": "object",
            "description": "Task information for the scan"
          },
          "page": {
            "type": "object",
            "description": "Page information from the scan"
          },
          "stats": {
            "type": "object",
            "description": "Statistics from the scan"
          },
          "meta": {
            "type": "object",
            "description": "Metadata about the scan"
          }
        }
      }
    },
    "total": {
      "type": "number",
      "description": "Total number of results available"
    },
    "has_more": {
      "type": "boolean",
      "description": "Whether more results are available"
    },
    "took": {
      "type": "number",
      "description": "Query execution time in milliseconds"
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026