submit
Pack: urlscan-io · Endpoint: https://gateway.pipeworx.io/urlscan-io/mcp
Submit a new URL for scanning (requires key).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | |
visibility | string | no | public (default) | unlisted | private |
country | string | no | ISO 3166-1 alpha-2 of scan country. |
tags | array | no | |
items | string | no | |
referer | string | no | |
customagent | string | no | |
useragent | string | no |
Example call
Arguments
{
"url": "https://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":"submit","arguments":{"url":"https://example.com"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('submit', {
"url": "https://example.com"
});
More examples
{
"url": "https://suspicious-site.com",
"visibility": "private",
"country": "US",
"tags": [
"phishing",
"test"
],
"_apiKey": "your-urlscan-io-api-key"
}
Response shape
| Field | Type | Description |
|---|---|---|
uuid | string | Unique identifier for the submitted scan |
api | string | API version |
result | string | URL to retrieve the scan result |
visibility | string | Visibility setting of the scan |
url | string | The URL that was submitted |
Full JSON Schema
{
"type": "object",
"description": "Response from submitting a URL for scanning",
"properties": {
"uuid": {
"type": "string",
"description": "Unique identifier for the submitted scan"
},
"api": {
"type": "string",
"description": "API version"
},
"result": {
"type": "string",
"description": "URL to retrieve the scan result"
},
"visibility": {
"type": "string",
"description": "Visibility setting of the scan"
},
"url": {
"type": "string",
"description": "The URL that was submitted"
}
}
}
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.