
Kusto
STDIOMCP server for Azure Data Explorer cluster access and query execution
MCP server for Azure Data Explorer cluster access and query execution
A mcp server that provides access to Azure Data Explorer (ADX) clusters.
The following tools are provided by the server:
Edit claude_desktop_config.json to add the following configuration:
{ "mcpServers": { "kusto": { "command": "uv", "args": [ "--directory", "{{PATH_TO_PROJECT}}\\mcp-server-kusto\\src\\mcp_server_kusto", "run", "mcp-server-kusto", "--cluster", "{{ADX_CLUSTER_URL}}", "--authority_id", "{{TENANT_ID}}", "--client_id", "{{CLIENT_ID}}", "--client_secret", "{{CLIENT_SECRET}}" ] } } }
When using azure data explorer emulator locally, provide the cluster url like https://localhost:8082
and not need to
provide --authority_id
, --client_id
, --client_secret
.
{ "mcpServers": { "kusto": { "command": "uv", "args": [ "--directory", "{{PATH_TO_PROJECT}}\\mcp-server-kusto\\src\\mcp_server_kusto", "run", "mcp-server-kusto", "--cluster", "{{ADX_CLUSTER_URL}}" ] } } }