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
AnalyzerResult.cs•625 B
using Microsoft.SqlServer.Dac.CodeAnalysis;
using Microsoft.SqlServer.Dac.Model;
namespace ErikEJ.DacFX.TSQLAnalyzer;
public class AnalyzerResult
{
public CodeAnalysisResult? Result { get; internal set; }
public Dictionary<string, DacModelException> ModelErrors { get; } = [];
#pragma warning disable CA1002 // Do not expose generic lists
public List<string> FormattedFiles { get; } = [];
#pragma warning restore CA1002 // Do not expose generic lists
public int FileCount { get; internal set; }
public string? OutputFile { get; internal set; }
public string? Analyzers { get; internal set; }
}