Skip to main content
Glama
Cyreslab-AI

urlhaus-mcp-server

lookup_url

Read-only

Retrieve detailed threat intelligence for a specific URL by querying the URLhaus malicious URL database.

Instructions

Get detailed information about a specific URL

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to look up (must be a complete URL with protocol)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
summaryYes
url_infoYes
query_statusYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint and openWorldHint, and the description adds no conflicting behavior. It adds little extra behavioral context beyond 'get detailed information,' but for a simple read-only lookup with an output schema, the annotation coverage makes this acceptable.

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 a single concise sentence with no filler. It front-loads the operation and object: 'Get detailed information about a specific URL.'

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?

With one fully documented required parameter, read-only annotations, and an output schema present, the description is nearly sufficient for correct invocation. What is missing is only comparative guidance against sibling tools, which is already addressed in other dimensions.

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%, so the schema fully documents the url parameter including the requirement for a complete URL with protocol. The description only restates 'specific URL' and adds no meaningful details beyond the schema.

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

Purpose4/5

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

The description states a clear operation ('get') and resource ('detailed information about a specific URL'), and 'specific' helps separate it from bulk listing tools like get_recent_urls and get_urls_by_tag. However, 'detailed information' is generic and does not convey what kind of details are returned.

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

Usage Guidelines3/5

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

The phrase 'a specific URL' implies this tool is for looking up one exact URL rather than recent or tagged lists, but there is no explicit guidance on when to choose this over lookup_host or lookup_payload. No exclusions or alternative conditions are provided.

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