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
high-external-links.sql•330 B
-- High External Link Count (LOW)
-- Pages with unusually high number of external links
-- Priority: LOW
-- Category: optimization
SELECT
url,
title,
external_links,
internal_links,
word_count,
status_code,
depth
FROM pages
WHERE external_links > 20
AND status_code = 200
ORDER BY external_links DESC
LIMIT 100;