CVE-2026-81093 describes a Server-Side Request Forgery (SSRF) vulnerability in the Apify MCP Server's get-html-skeleton tool. The tool accepted caller-supplied URLs and only validated their syntax (http/https scheme and parseable format) without inspecting the hostname or resolved IP address. This allowed loopback, link-local, and private IP ranges to pass validation, including cloud provider instance metadata endpoints (e.g., 169.254.169.254). Any caller of the MCP server could exploit this to make the server fetch internal-only endpoints and return the response, potentially exposing sensitive instance credentials and internal services. The vulnerability resided in src/tools/common/get_html_skeleton.ts using the isValidHttpUrl function from src/utils/generic.ts. The fix in version 0.9.12 removes the vulnerable tool entirely rather than patching the URL validation logic.