# PreClick

PreClick: An intent + security layer for agent browsing that verifies each destination before an agent proceeds, applying analyst-like reasoning, adaptive behavior, and continuous improvement. It ena…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add cybrlab-ai/PreClick

# Browse available tools
npx -y @smithery/cli@latest tool list cybrlab-ai/PreClick

# Get full schema for a tool
npx -y @smithery/cli@latest tool get cybrlab-ai/PreClick url_scanner_async_scan

# Call a tool
npx -y @smithery/cli@latest tool call cybrlab-ai/PreClick url_scanner_async_scan '{}'
```

## Direct MCP Connection

Endpoint: `https://preclick--cybrlab-ai.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 cybrlab-ai/PreClick <tool-name>
```
