submit

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

Submit a new URL for scanning (requires key).

Parameters

NameTypeRequiredDescription
urlstringyes
visibilitystringnopublic (default) | unlisted | private
countrystringnoISO 3166-1 alpha-2 of scan country.
tagsarrayno
itemsstringno
refererstringno
customagentstringno
useragentstringno

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

FieldTypeDescription
uuidstringUnique identifier for the submitted scan
apistringAPI version
resultstringURL to retrieve the scan result
visibilitystringVisibility setting of the scan
urlstringThe 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.

Regenerated from source · build July 6, 2026