We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sbroenne/mcp-server-excel'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
RequiredParameterAttribute.cs•499 B
namespace Sbroenne.ExcelMcp.Core.Attributes;
/// <summary>
/// Indicates that this parameter is required for the action.
/// The generator will emit validation code that throws if the value is null/empty.
/// </summary>
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
public sealed class RequiredParameterAttribute : Attribute
{
/// <summary>
/// Creates a RequiredParameter attribute.
/// </summary>
public RequiredParameterAttribute() { }
}