We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ErikEJ/SqlServer.Rules'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
RulesProject.cs•474 B
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
namespace SqlServer.Rules.Report;
[XmlType("Project")]
[Serializable]
public class RulesProject
{
[XmlAttribute]
public string Name { get; set; }
[XmlElement(ElementName = "Issue")]
#pragma warning disable CA2227 // Collection properties should be read only
public List<Issue> Issues { get; set; }
#pragma warning restore CA2227 // Collection properties should be read only
}