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
non-https.sql•264 B
-- Non-HTTPS Pages (MEDIUM)
-- Pages not using HTTPS protocol
-- Priority: MEDIUM
-- Category: technical
SELECT
url,
title,
status_code,
depth,
linked_from
FROM pages
WHERE url NOT LIKE 'https://%'
AND status_code = 200
ORDER BY depth ASC
LIMIT 100;