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