Skip to main content
Glama

Azure MCP Server

Official
MIT License
1,161
  • Linux
  • Apple
IKustoService.cs2.54 kB
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using AzureMcp.Core.Options; using AzureMcp.Kusto.Commands; namespace AzureMcp.Kusto.Services; public interface IKustoService { Task<List<string>> ListClusters( string subscription, string? tenant = null, RetryPolicyOptions? retryPolicy = null); Task<KustoClusterResourceProxy?> GetCluster( string subscription, string clusterName, string? tenant = null, RetryPolicyOptions? retryPolicy = null); Task<List<string>> ListDatabases( string clusterUri, string? tenant = null, AuthMethod? authMethod = AuthMethod.Credential, RetryPolicyOptions? retryPolicy = null); Task<List<string>> ListDatabases( string subscription, string clusterName, string? tenant = null, AuthMethod? authMethod = AuthMethod.Credential, RetryPolicyOptions? retryPolicy = null); Task<List<JsonElement>> QueryItems( string clusterUri, string databaseName, string query, string? tenant = null, AuthMethod? authMethod = AuthMethod.Credential, RetryPolicyOptions? retryPolicy = null); Task<List<JsonElement>> QueryItems( string subscriptionId, string clusterName, string databaseName, string query, string? tenant = null, AuthMethod? authMethod = AuthMethod.Credential, RetryPolicyOptions? retryPolicy = null); Task<List<string>> ListTables( string clusterUri, string databaseName, string? tenant = null, AuthMethod? authMethod = AuthMethod.Credential, RetryPolicyOptions? retryPolicy = null); Task<List<string>> ListTables( string subscriptionId, string clusterName, string databaseName, string? tenant = null, AuthMethod? authMethod = AuthMethod.Credential, RetryPolicyOptions? retryPolicy = null); Task<string> GetTableSchema( string clusterUri, string databaseName, string tableName, string? tenant = null, AuthMethod? authMethod = AuthMethod.Credential, RetryPolicyOptions? retryPolicy = null); Task<string> GetTableSchema( string subscriptionId, string clusterName, string databaseName, string tableName, string? tenant = null, AuthMethod? authMethod = AuthMethod.Credential, RetryPolicyOptions? retryPolicy = null); }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Azure/azure-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server