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
thin-content.sql•326 B
-- Thin Content (MEDIUM)
-- Pages with insufficient content (< 300 words)
-- Priority: MEDIUM
-- Category: content
SELECT
url,
title,
word_count,
status_code,
depth,
internal_links
FROM pages
WHERE word_count < 300
AND status_code = 200
AND content_type LIKE '%text/html%'
ORDER BY word_count ASC
LIMIT 100;