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
DataModelTableColumnsResult.cs•508 B
using System.Text.Json.Serialization;
namespace Sbroenne.ExcelMcp.Core.Models;
/// <summary>
/// Result for listing table columns
/// </summary>
public class DataModelTableColumnsResult : ResultBase
{
/// <summary>
/// Table name
/// </summary>
[JsonPropertyName("tn")]
public string TableName { get; set; } = "";
/// <summary>
/// List of columns in the table
/// </summary>
[JsonPropertyName("col")]
public List<DataModelColumnInfo> Columns { get; set; } = [];
}