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
ProblemList.cs•310 B
namespace ErikEJ.DacFX.TSQLAnalyzer.Services;
public class ProblemList
{
#pragma warning disable CA2227 // Collection properties should be read only
public IList<PlainProblem> Problems { get; set; } = new List<PlainProblem>();
#pragma warning restore CA2227 // Collection properties should be read only
}