Azure Data Explorer MCP Server
Connect FlowHunt to Azure Data Explorer for powerful, secure, and automated data exploration, KQL query execution, and schema management—directly within your AI workflows.

What does “Azure Data Explorer” MCP Server do?
The Azure Data Explorer (ADX) MCP Server is a Model Context Protocol (MCP) server that enables AI assistants to seamlessly connect with Azure Data Explorer/Eventhouse clusters and databases. Through standardized MCP interfaces, it empowers AI tools and agents to execute KQL (Kusto Query Language) queries, explore database resources, retrieve table schemas, sample data, and access table statistics. The server supports interactive tools and authentication via Azure credentials, making it possible to securely manage and analyze large-scale data directly from AI-driven workflows. This integration enhances developer productivity by automating data exploration, querying, and management within Azure Data Explorer environments.
List of Prompts
No explicit prompt templates are mentioned in the repository.
List of Resources
- Tables listing
- Enables AI assistants to list all tables in the configured Azure Data Explorer database.
- Table schema
- Provides schema information for a selected table, including column names and types.
- Table data sampling
- Allows sampling of data rows from any given table to provide context or previews for downstream tasks.
- Table statistics
- Retrieves detailed statistics or metadata for tables, such as row counts and size.
List of Tools
- KQL Query Execution
- Execute Kusto Query Language (KQL) queries against the connected Azure Data Explorer database.
- List Tables
- Retrieve a list of all tables available in the specified database.
- View Table Schema
- Access and display the schema (structure) of a selected table.
- Sample Table Data
- Fetch a small sample of data from a table for inspection or context.
- Get Table Statistics
- Obtain statistics or high-level details about a table, such as row counts and storage info.
Use Cases of this MCP Server
- Database Management
- Automate table listing, schema retrieval, and data sampling, streamlining database exploration and management for developers and data scientists.
- Interactive Data Analysis
- Quickly execute KQL queries and fetch results for exploratory analysis, making it easier for AI assistants and users to derive insights from large datasets.
- AI-Powered Data Exploration
- Enable LLMs or AI agents to browse, summarize, and contextualize data from Azure Data Explorer, supporting use cases like report generation or anomaly detection.
- Integration with DevOps Pipelines
- Leverage the MCP server in CI/CD processes to validate data, run health checks, and ensure data readiness before deployments.
- Security-Aware Data Operations
- Utilize Azure authentication and workload identity support to ensure secure, compliant access to sensitive databases within organizational boundaries.
How to set it up
Windsurf
- Ensure Node.js and necessary prerequisites are installed.
- Open your Windsurf configuration file.
- Add the Azure Data Explorer MCP server with the following JSON snippet:
{ "mcpServers": { "adx-mcp": { "command": "npx", "args": ["@adx/mcp-server@latest"] } } }
- Save the configuration and restart Windsurf.
- Verify that the MCP server is running and accessible.
Securing API keys (Windsurf)
{
"mcpServers": {
"adx-mcp": {
"command": "npx",
"args": ["@adx/mcp-server@latest"],
"env": {
"ADX_CLUSTER_URL": "https://yourcluster.region.kusto.windows.net",
"ADX_DATABASE": "your_database"
},
"inputs": {}
}
}
}
Claude
- Install the necessary dependencies for MCP integration in Claude.
- Locate Claude’s configuration file.
- Add the following MCP server configuration:
{ "mcpServers": { "adx-mcp": { "command": "npx", "args": ["@adx/mcp-server@latest"] } } }
- Save changes and restart Claude.
- Confirm the server connection is working.
Securing API keys (Claude)
{
"mcpServers": {
"adx-mcp": {
"command": "npx",
"args": ["@adx/mcp-server@latest"],
"env": {
"ADX_CLUSTER_URL": "https://yourcluster.region.kusto.windows.net",
"ADX_DATABASE": "your_database"
},
"inputs": {}
}
}
}
Cursor
- Install Node.js and ensure Cursor can access external MCP servers.
- Open the Cursor MCP server configuration file.
- Insert the MCP server JSON as below:
{ "mcpServers": { "adx-mcp": { "command": "npx", "args": ["@adx/mcp-server@latest"] } } }
- Save and restart Cursor.
- Test the MCP integration by running a sample KQL query.
Securing API keys (Cursor)
{
"mcpServers": {
"adx-mcp": {
"command": "npx",
"args": ["@adx/mcp-server@latest"],
"env": {
"ADX_CLUSTER_URL": "https://yourcluster.region.kusto.windows.net",
"ADX_DATABASE": "your_database"
},
"inputs": {}
}
}
}
Cline
- Confirm you have Node.js and Cline set up.
- Edit your Cline MCP configuration file.
- Add the server as follows:
{ "mcpServers": { "adx-mcp": { "command": "npx", "args": ["@adx/mcp-server@latest"] } } }
- Save the file and restart Cline.
- Ensure connectivity by running a database schema query.
Securing API keys (Cline)
{
"mcpServers": {
"adx-mcp": {
"command": "npx",
"args": ["@adx/mcp-server@latest"],
"env": {
"ADX_CLUSTER_URL": "https://yourcluster.region.kusto.windows.net",
"ADX_DATABASE": "your_database"
},
"inputs": {}
}
}
}
How to use this MCP inside flows
Using MCP in FlowHunt
To integrate MCP servers into your FlowHunt workflow, start by adding the MCP component to your flow and connecting it to your AI agent:

Click on the MCP component to open the configuration panel. In the system MCP configuration section, insert your MCP server details using this JSON format:
{
"adx-mcp": {
"transport": "streamable_http",
"url": "https://yourmcpserver.example/pathtothemcp/url"
}
}
Once configured, the AI agent is now able to use this MCP as a tool with access to all its functions and capabilities. Remember to change “adx-mcp” to whatever the actual name of your MCP server is and replace the URL with your own MCP server URL.
Overview
Section | Availability | Details/Notes |
---|---|---|
Overview | ✅ | |
List of Prompts | ⛔ | No prompt templates found |
List of Resources | ✅ | Tables, schema, sampling, statistics |
List of Tools | ✅ | KQL query, list tables, schema, sample, statistics |
Securing API Keys | ✅ | .env file and environment variables supported |
Sampling Support (less important in evaluation) | ✅ | Sampling of table data is supported |
Based on the information provided and its completeness, this MCP server rates around 7/10. It covers all major MCP requirements for Azure Data Explorer, but lacks explicit prompt templates and details about roots support.
MCP Score
Has a LICENSE | ✅ (MIT) |
---|---|
Has at least one tool | ✅ |
Number of Forks | 20 |
Number of Stars | 42 |
Frequently asked questions
- What is the Azure Data Explorer MCP Server?
It’s a Model Context Protocol server that connects FlowHunt and other AI tools to Azure Data Explorer. It enables secure, programmatic access to database resources, KQL query execution, schema exploration, and data sampling—directly from AI workflows.
- What functions can I perform with this MCP server?
You can list tables, view table schemas, sample data, execute KQL queries, and fetch table statistics. This allows for automated data management, exploration, and analysis inside your AI flows.
- How do I secure my Azure credentials?
Use environment variables in your MCP server configuration to securely store your ADX cluster URL and database name. Never hardcode sensitive keys directly into your configuration files.
- What are common use cases?
Typical use cases include automated database management, interactive data analysis, enabling AI agents to explore and summarize data, integrating data checks into DevOps pipelines, and ensuring secure, compliant access to enterprise data.
- Does the server support Kusto Query Language (KQL)?
Yes, you can execute KQL queries directly against your Azure Data Explorer database, making it ideal for advanced analytics and real-time data exploration.
Integrate Azure Data Explorer with FlowHunt
Supercharge your AI workflows with direct, secure access to Azure Data Explorer. Automate database queries, schema management, and data exploration using the ADX MCP Server.