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
AddToDataModelResult.cs•1.2 KiB
using System.Text.Json.Serialization;
namespace Sbroenne.ExcelMcp.Core.Models;
/// <summary>
/// Result of adding an Excel Table to the Data Model.
/// Extends OperationResult with information about bracket-escaped column names.
/// </summary>
public class AddToDataModelResult : OperationResult
{
/// <summary>
/// Column names that contain literal bracket characters and cannot be referenced in DAX without escaping.
/// Populated when stripBracketColumnNames is false and bracket column names are found.
/// Empty when no bracket column names are present or when stripBracketColumnNames is true.
/// </summary>
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string[]? BracketColumnsFound { get; set; }
/// <summary>
/// Column names that were renamed (bracket characters removed) before adding to the Data Model.
/// Populated only when stripBracketColumnNames is true and bracket column names were found.
/// Each entry is the original column name (with brackets). The renamed version removes the brackets.
/// </summary>
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string[]? BracketColumnsRenamed { get; set; }
}