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
AddIgnorePatternsResponse.cs•583 B
namespace NetContextClient.Models;
/// <summary>
/// Response model for adding ignore patterns
/// </summary>
public class AddIgnorePatternsResponse : IgnorePatternsResponse
{
/// <summary>
/// Gets or sets the array of glob patterns that were successfully added to the ignore list.
/// </summary>
public string[] ValidPatternsAdded { get; set; } = [];
/// <summary>
/// Gets or sets the array of patterns that were rejected due to invalid glob syntax or other validation errors.
/// </summary>
public string[] InvalidPatterns { get; set; } = [];
}