result

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

Full result by scan uuid (keyless).

Parameters

NameTypeRequiredDescription
uuidstringyes

Example call

Arguments

{
  "uuid": "12345678-1234-1234-1234-123456789012"
}

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":"result","arguments":{"uuid":"12345678-1234-1234-1234-123456789012"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('result', {
  "uuid": "12345678-1234-1234-1234-123456789012"
});

Response shape

FieldTypeDescription
taskobjectTask metadata and configuration
pageobjectPage information including title, domain, IP
dataobjectDetailed scan data including requests and resources
statsobjectScan statistics
metaobjectAdditional metadata
Full JSON Schema
{
  "type": "object",
  "description": "Full scan result details",
  "properties": {
    "task": {
      "type": "object",
      "description": "Task metadata and configuration"
    },
    "page": {
      "type": "object",
      "description": "Page information including title, domain, IP"
    },
    "data": {
      "type": "object",
      "description": "Detailed scan data including requests and resources"
    },
    "stats": {
      "type": "object",
      "description": "Scan statistics"
    },
    "meta": {
      "type": "object",
      "description": "Additional metadata"
    }
  }
}

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