Skip to main content

Install with UVX in VS Code PyPI Downloads

🎯 Overview

A Model Context Protocol (MCP) server implementation for Microsoft Fabric Real-Time Intelligence (RTI). This server enables AI agents to interact with Fabric RTI services by providing tools through the MCP interface, allowing for seamless data querying and analysis capabilities.

🔍 How It Works

The Fabric RTI MCP Server creates a seamless integration between AI agents and Fabric RTI services through:

  • 🔄 Smart JSON communication that AI agents understand
  • 🏗️ Natural language commands that get translated to Kql operations
  • 💡 Intelligent parameter suggestions and auto-completion!
  • ⚡ Consistent error handling that makes sense

✨ Supported Services

🚧 Coming soon

  • Activator
  • Eventstreams
  • Other RTI items

🔍 Explore your data

  • "Get databases in Eventhouse'"
  • "Sample 10 rows from table 'StormEvents' in Eventhouse"
  • "What can you tell me about StormEvents data?"
  • "Analyze the StormEvents to come up with trend analysis ocross past 10 years of data"
  • "Analyze the commands in 'CommandExecution' table and categorize them as low/medium/high risks"

Available tools

  • List databases
  • List tables
  • Get schema for a table
  • Sample rows from a table
  • Execute query
  • Ingest a csv

Getting Started

Prerequisites

  1. Install either the stable or Insiders release of VS Code:
  2. Install the GitHub Copilot and GitHub Copilot Chat extensions
  3. Install uv
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

or, check here for other install options

  1. Open VS Code in an empty folder

Install from PyPI (Pip)

The Fabric RTI MCP Server is available on PyPI, so you can install it using pip. This is the easiest way to install the server.

From VS Code

1. Open the command palette (Ctrl+Shift+P) and run the command `MCP: Add Server`
2. Select install from Pip
3. When prompted, enter the package name `fabric-rti-mcp`
4. Follow the prompts to install the package and add it to your settings.json file

The process should end with the below settings in your settings.json file.

settings.json

{
    "mcp": {
        "server": {
            "fabric-rti-mcp": {
                "command": "uvx",
                "args": [
                    "microsoft-fabric-rti-mcp"
                ]
            }
        }
    }
}

🔧 Manual Install (Install from source)

  1. Make sure you have Python 3.10+ installed properly and added to your PATH.
  2. Clone the repository
  3. Install the dependencies (pip install . or uv tool install .)
  4. Add the settings below into your vscode settings.json file.
  5. Change the path to match the repo location on your machine.
  6. Change the cluster uri in the settings to match your cluster.
{
    "mcp": {
        "servers": {
            "kusto-mcp": {
                "command": "uv",
                "args": [
                    "--directory",
                    "C:/path/to/fabric-rti-mcp/",
                    "run",
                    "-m",
                    "fabric_rti_mcp.server"
                ]
            }
        }
    }
}

🐛 Debugging the MCP Server locally

Assuming you have python installed and the repo cloned:

Install locally

pip install -e ".[dev]"

Configure

Add the server to your

{
    "mcp": {
        "servers": {
            "local-fabric-rti-mcp": {
                "command": "python",
                "args": [
                    "-m",
                    "fabric_rti_mcp.server"
                ]
            }
        }
    }
}

Attach the debugger

Use the Python: Attach configuration in your launch.json to attach to the running server. Once VS Code picks up the server and starts it, navigate to it's output:

  1. Open command palette (Ctrl+Shift+P) and run the command MCP: List Servers
  2. Navigate to local-fabric-rti-mcp and select Show Output
  3. Pick up the process id (PID) of the server from the output
  4. Run the Python: Attach configuration in your launch.json file, and paste the PID of the server in the prompt
  5. The debugger will attach to the server process, and you can start debugging

🧪 Test the MCP Server

  1. Open GitHub Copilot in VS Code and switch to Agent mode
  2. You should see the Fabric RTI MCP Server in the list of tools
  3. Try a prompt that tells the agent to use the Eventhouse tools, such as "List my Kusto tables"
  4. The agent should be able to use the Fabric RTI MCP Server tools to complete your query

🔑 Authentication

The MCP Server seamlessly integrates with your host operating system's authentication mechanisms, making it super easy to get started! We use Azure Identity under the hood via DefaultAzureCredential, which tries these credentials in order:

  1. Environment Variables (EnvironmentCredential) - Perfect for CI/CD pipelines
  2. Visual Studio (VisualStudioCredential) - Uses your Visual Studio credentials
  3. Azure CLI (AzureCliCredential) - Uses your existing Azure CLI login
  4. Azure PowerShell (AzurePowerShellCredential) - Uses your Az PowerShell login
  5. Azure Developer CLI (AzureDeveloperCliCredential) - Uses your azd login
  6. Interactive Browser (InteractiveBrowserCredential) - Falls back to browser-based login if needed

If you're already logged in through any of these methods, the Fabric RTI MCP Server will automatically use those credentials.

🛡️ Security Note

Your credentials are always handled securely through the official Azure Identity SDK - we never store or manage tokens directly.

MCP as a phenomenon is very novel and cutting-edge. As with all new technology standards, consider doing a security review to ensure any systems that integrate with MCP servers follow all regulations and standards your system is expected to adhere to. This includes not only the Azure MCP Server, but any MCP client/agent that you choose to implement down to the model provider.

👥 Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

🤝 Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Data Collection

The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

microsoft_fabric_rti_mcp-0.0.2.tar.gz (74.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

microsoft_fabric_rti_mcp-0.0.2-py3-none-any.whl (11.9 kB view details)

Uploaded Python 3

File details

Details for the file microsoft_fabric_rti_mcp-0.0.2.tar.gz.

File metadata

  • Download URL: microsoft_fabric_rti_mcp-0.0.2.tar.gz
  • Upload date:
  • Size: 74.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for microsoft_fabric_rti_mcp-0.0.2.tar.gz
Algorithm Hash digest
SHA256 1bf79fb92c758b6ba90a6fab1f3377cf5a6fe7bfc5c4dfb35535ff5d8e383595
MD5 3015acb5a83d96fd70b9c310b3082e28
BLAKE2b-256 82f9fb42dcd4e6a345f92de1c2618c2caa71751504166e77b3bec7265eb44dea

See more details on using hashes here.

Provenance

The following attestation bundles were made for microsoft_fabric_rti_mcp-0.0.2.tar.gz:

Publisher: publish-PyPI.yml on microsoft/fabric-rti-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file microsoft_fabric_rti_mcp-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for microsoft_fabric_rti_mcp-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 8f4df33a5af67163be06ebe9f18c8c30aaa6bc41b2682ed8a5652bc1e542fdd4
MD5 803244898f9e0e3b6a21faeba2a91f93
BLAKE2b-256 7a0b4130049ba0fb64d46031ed4ff278bd4b1ddb75f392179855275a2a718fc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for microsoft_fabric_rti_mcp-0.0.2-py3-none-any.whl:

Publisher: publish-PyPI.yml on microsoft/fabric-rti-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.6.2

2 files

0.6.1

2 files

0.6.0

2 files

0.5.5

2 files

0.5.4

2 files

0.5.3

2 files

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.0

2 files

This release

0.0.2 This release

2 files

0.0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page