We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jonaolden/tabular-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
PowerBiConnectionException.cs•634 B
// File: Core/PowerBiConnectionException.cs
namespace pbi_local_mcp.Core;
/// <summary>
/// Exception thrown when Power BI connection is not available or invalid
/// </summary>
public class PowerBiConnectionException : Exception
{
public PowerBiConnectionException()
: base("No Power BI Desktop instance is connected. Please open a Power BI file (.pbix) in Power BI Desktop and try again.")
{
}
public PowerBiConnectionException(string message) : base(message)
{
}
public PowerBiConnectionException(string message, Exception innerException)
: base(message, innerException)
{
}
}