ip
Pack: urlscan-io · Endpoint: https://gateway.pipeworx.io/urlscan-io/mcp
Search urlscan.io past scan results for a specific IP address (no API key required); returns scan records for pages hosted at or contacting that IP.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ip | string | yes |
Example call
Arguments
{
"ip": "192.168.1.1"
}
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":"ip","arguments":{"ip":"192.168.1.1"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ip', {
"ip": "192.168.1.1"
});
Response shape
| Field | Type | Description |
|---|---|---|
results | array | Array of scan results for the IP |
total | number | Total number of results for this IP |
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 IP address",
"properties": {
"results": {
"type": "array",
"description": "Array of scan results for the IP",
"items": {
"type": "object"
}
},
"total": {
"type": "number",
"description": "Total number of results for this IP"
},
"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.