result
Pack: urlscan-io · Endpoint: https://gateway.pipeworx.io/urlscan-io/mcp
Full result by scan uuid (keyless).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
uuid | string | yes |
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
| Field | Type | Description |
|---|---|---|
task | object | Task metadata and configuration |
page | object | Page information including title, domain, IP |
data | object | Detailed scan data including requests and resources |
stats | object | Scan statistics |
meta | object | Additional 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.