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
DataModelTableViewResult.cs•779 B
namespace Sbroenne.ExcelMcp.Core.Models;
/// <summary>
/// Result for viewing table details
/// </summary>
public class DataModelTableViewResult : ResultBase
{
/// <summary>
/// Table name
/// </summary>
public string TableName { get; set; } = "";
/// <summary>
/// Source query or connection name
/// </summary>
public string SourceName { get; set; } = "";
/// <summary>
/// Number of rows in the table
/// </summary>
public int RecordCount { get; set; }
/// <summary>
/// List of columns in the table
/// </summary>
public List<DataModelColumnInfo> Columns { get; set; } = [];
/// <summary>
/// Number of measures defined in this table
/// </summary>
public int MeasureCount { get; set; }
}