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
title-equals-h1.sql•405 B
-- Pages with Title = H1 (OPPORTUNITY)
-- Pages where title and H1 are identical (opportunity for differentiation)
-- Priority: LOW
-- Category: optimization
SELECT
url,
title,
h1,
word_count,
status_code,
depth
FROM pages
WHERE title = h1
AND title IS NOT NULL
AND TRIM(title) != ''
AND h1 IS NOT NULL
AND TRIM(h1) != ''
AND status_code = 200
ORDER BY word_count DESC
LIMIT 100;