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
| Name | Type | Required | Description |
|---|---|---|---|
domain | string | yes |
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
| Field | Type | Description |
|---|---|---|
results | array | Array of scan results for the domain |
total | number | Total number of results for this domain |
has_more | boolean | Whether more results are available |
took | number | Query 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.