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
duplicate-h1.sql•365 B
-- Duplicate H1 Tags (MEDIUM)
-- Multiple pages sharing the same H1 tag
-- Priority: MEDIUM
-- Category: content
SELECT
h1,
COUNT(*) as page_count,
GROUP_CONCAT(url, '|||') as urls,
MIN(title) as example_title
FROM pages
WHERE h1 IS NOT NULL
AND TRIM(h1) != ''
AND status_code = 200
GROUP BY h1
HAVING COUNT(*) > 1
ORDER BY page_count DESC
LIMIT 50;