We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/willibrandon/NetContextServer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
RemoveIgnorePatternsResponse.cs•757 B
namespace NetContextClient.Models;
/// <summary>
/// Response model for removing ignore patterns
/// </summary>
public class RemoveIgnorePatternsResponse : IgnorePatternsResponse
{
/// <summary>
/// Gets or sets the array of patterns that were successfully removed from the ignore list.
/// </summary>
public string[] RemovedPatterns { get; set; } = [];
/// <summary>
/// Gets or sets the array of patterns that were not found in the ignore list.
/// </summary>
public string[] NotFoundPatterns { get; set; } = [];
/// <summary>
/// Gets or sets the array of default patterns that could not be removed as they are system-defined.
/// </summary>
public string[] DefaultPatternsSkipped { get; set; } = [];
}