We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Matthew-Wise/umbraco-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
@model IPublishedContent
@{
var homePage = Model.AncestorOrSelf("home");
void RenderChildPages(IEnumerable<IPublishedContent> contentItems)
{
if (contentItems.Any())
{
foreach (var content in contentItems.Where(x => x.IsVisible()))
{
if (!(content.HasProperty("excludeFromSitemap") && content.Value<bool>("excludeFromSitemap")))
{
<url><loc>@content.Url(mode:UrlMode.Absolute)</loc><lastmod>@content.UpdateDate.ToString("yyyy-MM-ddTHH:mm:sszzz")</lastmod></url>
if (content.Children.Any(x => x.IsVisible()))
{
RenderChildPages(content.Children);
}
}
}
}
};
}
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
<url><loc>@homePage.Url(mode: UrlMode.Absolute)</loc><priority>1.0</priority><lastmod>@homePage.UpdateDate.ToString("yyyy-MM-ddTHH:mm:sszzz")</lastmod></url>
@{
RenderChildPages(homePage.Children);
}
</urlset>