# URL security scanner to protect AI agent workflows.

MCP-native URL security scanner that protects AI agent workflows. Analyzes URLs for phishing, malware, and suspicious patterns before agent navigation. Returns risk scores, confidence levels, and age…

## Quick Start

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

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

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

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

## Direct MCP Connection

Endpoint: `https://urlcheck-mcp--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/urlcheck-mcp <tool-name>
```
