Skip to main content
Glama
threat-zone

Threat.Zone MCP Server

by threat-zone

scan_url

Analyze URLs for threats and malicious content to identify potential security risks before accessing suspicious links.

Instructions

Analyze a URL for threats and malicious content.

Args: url: The URL to analyze is_public: Whether the scan results should be public

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
is_publicNo

Implementation Reference

  • The 'scan_url' tool handler function. Registered via @app.tool decorator. Takes a URL and optional is_public flag, sends POST request to ThreatZone API /public-api/scan/url endpoint, returns the API response.
    @app.tool async def scan_url(url: str, is_public: bool = False) -> Dict[str, Any]: """ Analyze a URL for threats and malicious content. Args: url: The URL to analyze is_public: Whether the scan results should be public """ data = { "url": url, "isPublic": is_public } return await get_client().post("/public-api/scan/url", data=data)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/threat-zone/threatzonemcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server