# PreClick : URL Security scanner

PreClick: An MCP-native URL preflight security scanning service for autonomous agents. It scans links for threats and confirms they match the intended task before execution. Built for agentic workflo…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add agentic-browsing/preclick

# Browse available tools
npx -y @smithery/cli@latest tool list agentic-browsing/preclick

# Get full schema for a tool
npx -y @smithery/cli@latest tool get agentic-browsing/preclick url_scanner_async_scan

# Call a tool
npx -y @smithery/cli@latest tool call agentic-browsing/preclick url_scanner_async_scan '{}'
```

## Direct MCP Connection

Endpoint: `https://preclick--agentic-browsing.run.tools`

## Tools (6)

- `url_scanner_async_scan` — Submit a URL for asynchronous security analysis. Returns immediately with a task_id. Poll with url_scanner_async_task_s…
- `url_scanner_async_scan_with_intent` — Submit a URL with optional user intent for asynchronous security analysis. Returns immediately with a task_id. Poll wit…
- `url_scanner_async_task_result` — Retrieve the result of an asynchronous scan task. If completed, returns the full scan result (risk_score, confidence, a…
- `url_scanner_async_task_status` — Check the status of an asynchronous scan task. Returns the current task status using native MCP task semantics (working…
- `url_scanner_scan` — Analyze a URL for security threats (synchronous, blocks until complete or timeout). Returns risk score, confidence, age…
- `url_scanner_scan_with_intent` — Analyze a URL for security threats with optional user intent context (synchronous, blocks until complete or timeout). R…

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get agentic-browsing/preclick <tool-name>
```
