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-images.sql•312 B
-- Missing Images (LOW)
-- Pages with no images
-- Priority: LOW
-- Category: optimization
SELECT
url,
title,
word_count,
images,
status_code,
depth
FROM pages
WHERE (images = '[]' OR images IS NULL OR images = '')
AND word_count > 300
AND status_code = 200
ORDER BY word_count DESC
LIMIT 100;