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
canonical-issues.sql•453 B
-- Canonical Issues (MEDIUM)
-- Pages where canonical URL differs from actual URL
-- Priority: MEDIUM
-- Category: technical
SELECT
url,
canonical_url,
title,
status_code,
depth
FROM pages
WHERE canonical_url IS NOT NULL
AND canonical_url != ''
AND canonical_url != url
-- Ignore trailing slash differences (normalize both URLs)
AND RTRIM(canonical_url, '/') != RTRIM(url, '/')
AND status_code = 200
ORDER BY depth ASC
LIMIT 100;