Skip to main content
Glama

PreClick — An MCP-native URL preflight scanning service for autonomous agents (formerly URLCheck).

url_scanner_scan_with_intent

Read-only

Analyze a URL for security threats with optional user intent context (synchronous, blocks until complete or timeout). Returns risk score, confidence, agent access guidance, and intent_alignment. For long-running scans, prefer url_scanner_async_scan_with_intent which returns immediately with a task_id for polling via url_scanner_async_task_result.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to analyze. Must be HTTP or HTTPS. If no scheme provided, https:// is assumed.
intentNoOptional user intent for visiting the URL. Recommended for additional context.

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, covering the safety profile. The description adds valuable context: synchronous blocking behavior with timeout, and the return fields (risk score, confidence, agent access guidance, intent_alignment). This goes beyond the annotations without contradicting them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences, front-loaded with the core purpose and behavior, and the second sentence provides the alternative. Every word earns its place with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema exists, but the description lists the key return fields. It also explains the synchronous behavior and points to the async alternative. Minor gaps include unspecified timeout duration and error handling, but overall it is complete for the tool's complexity and annotations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% with clear descriptions for both url and intent parameters. The description only re-iterates 'optional user intent context' without adding new meaning, so it does not elevate above the schema baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool 'Analyze a URL for security threats' with optional user intent context, providing a specific verb and resource. It also distinguishes from the async sibling by explicitly mentioning synchronous blocking behavior.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly tells when to use the async alternative: 'For long-running scans, prefer url_scanner_async_scan_with_intent which returns immediately with a task_id for polling via url_scanner_async_task_result.' This provides clear guidance on tool selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation4/5

The tools are clearly grouped into synchronous and asynchronous scanning pairs with intent variants, making their purposes distinct. However, the async status and result tools could be slightly confusing as separate tools when they serve closely related polling functions.

Naming Consistency5/5

All tool names follow a consistent snake_case pattern with clear prefixes (url_scanner_) and descriptive suffixes (async_scan, scan_with_intent, async_task_status). The naming is highly predictable and systematic throughout.

Tool Count5/5

With 6 tools, the server provides a well-scoped set that covers both synchronous and asynchronous scanning workflows, including intent variants and polling mechanisms. This count is appropriate for a focused URL scanning service.

Completeness5/5

The tool set offers complete coverage for URL scanning: synchronous and asynchronous modes, with and without intent, plus status checking and result retrieval. There are no obvious gaps for the domain, supporting full agent workflows without dead ends.