Skip to main content
Glama
Cyreslab-AI

urlhaus-mcp-server

get_recent_urls

Read-only

Fetch recent malicious URLs from URLhaus threat intelligence to identify active threats for cybersecurity research.

Instructions

Get the most recent malicious URLs from URLhaus (up to 1000 entries)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of URLs to retrieve (1-1000, default: 100)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlsYes
summaryYes
urls_countYes
query_statusYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint and openWorldHint, so the description's main addition is that results are 'most recent' and limited to 1000 entries. It does not disclose behaviors like external API dependency, freshness guarantees, or pagination, but the openWorld annotation reduces the burden.

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 sentence with no filler. It front-loads the core action and resource, then adds the key limit, and every phrase contributes useful information.

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?

For a simple one-parameter tool with full schema coverage, an output schema, and read-only/open-world annotations, the description is nearly complete. It only lacks explicit routing context relative to sibling tools, which keeps it just short of a perfect score.

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 coverage is 100%, and the description adds no parameter-level detail beyond what the schema provides. The limit parameter is fully described in the schema with min, max, and default, so the description earns the baseline score of 3.

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 states a specific verb ('Get'), resource ('most recent malicious URLs'), and source ('URLhaus'), clearly distinguishing it from sibling tools like lookup_url and get_urls_by_tag. It also adds the upper bound of 1000 entries, which sharpens the tool's scope.

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 description implies this is for retrieving a recent feed of malicious URLs, but it does not explicitly say when to choose this over lookup_url, get_urls_by_tag, or get_urls_by_signature. There is no when-not-to-use or alternative routing guidance.

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