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
-- Heading Hierarchy Issues (MEDIUM)
-- Pages with non-sequential heading structures (h1 -> h3, skipping h2)
-- Priority: MEDIUM
-- Category: technical
SELECT
url,
title,
heading_hierarchy,
heading_sequential_errors,
heading_count_h1,
heading_count_h2,
heading_count_h3
FROM pages
WHERE heading_sequential_errors IS NOT NULL
AND heading_sequential_errors != '[]'
AND status_code = 200
ORDER BY depth ASC
LIMIT 100;