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
missing-hsts.sql•365 B
-- Missing Security Headers - HSTS (HIGH)
-- Pages missing Strict-Transport-Security header
-- Priority: HIGH
-- Category: security
SELECT
url,
title,
status_code,
depth,
security_headers_hsts
FROM pages
WHERE (security_headers_hsts IS NULL OR security_headers_hsts = '')
AND status_code = 200
AND url LIKE 'https://%'
ORDER BY depth ASC
LIMIT 100;