We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/houtini-ai/seo-crawler-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
protocol-relative-links.sql•373 B
-- Protocol-Relative Links (LOW)
-- Links using protocol-relative URLs (//example.com) which can cause mixed content warnings
-- Priority: LOW
-- Category: security
SELECT
url,
title,
link_protocol_relative_count,
status_code,
depth
FROM pages
WHERE link_protocol_relative_count > 0
AND status_code = 200
ORDER BY link_protocol_relative_count DESC
LIMIT 100;