MCP.so
Sign In
Servers

Natural Language to Kusto Query MCP Server

@alexneyler

A configurable MCP server for translating natural language into kusto queries

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "kusto": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-v",
        "/path/to/settings.yaml:/app/settings.yaml",
        "-e",
        "AZURE_OPENAI_KEY",
        "-e",
        "KUSTO_ACCESS_TOKEN",
        "alexeyler/kusto-mcp-server"
      ],
      "env": {
        "AZURE_OPENAI_KEY": "",
        "KUSTO_ACCESS_TOKEN": ""
      }
    }
  }
}

More from Other