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-titles.sql•640 B
-- Missing Title Tags (CRITICAL)
-- Pages without title tags - catastrophic for SEO
-- Priority: CRITICAL
-- Category: critical
-- Impact: Pages are essentially invisible to search engines. Title tags are the most important on-page SEO element and their absence prevents proper indexing and ranking.
-- Fix: Add unique, descriptive title tags (50-60 characters) to all pages immediately. Include primary keywords and brand name where appropriate.
SELECT
url,
word_count,
heading_count_h1
FROM pages
WHERE (title IS NULL OR title = '' OR TRIM(title) = '')
AND status_code = 200
AND depth <= 5
ORDER BY word_count DESC
LIMIT 100;