domain

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

Search urlscan.io past scan results for a specific domain (no API key required); returns scan records including URL, verdict, screenshot link, and scan date.

Parameters

NameTypeRequiredDescription
domainstringyes

Example call

Arguments

{
  "domain": "example.com"
}

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":"domain","arguments":{"domain":"example.com"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('domain', {
  "domain": "example.com"
});

Response shape

FieldTypeDescription
resultsarrayArray of scan results for the domain
totalnumberTotal number of results for this domain
has_morebooleanWhether more results are available
tooknumberQuery execution time in milliseconds
Full JSON Schema
{
  "type": "object",
  "description": "Search results for a specific domain",
  "properties": {
    "results": {
      "type": "array",
      "description": "Array of scan results for the domain",
      "items": {
        "type": "object"
      }
    },
    "total": {
      "type": "number",
      "description": "Total number of results for this domain"
    },
    "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