AgentSkillsCN

fabric-rti-mcp

借助 Fabric RTI MCP 服务器,为 Microsoft Fabric 实时智能(RTI)提供专业指导。在 Eventhouse 上执行 KQL 查询,管理 Eventstreams 以实现实时数据处理,创建 Activator 触发器用于告警通知,同时管理 Map 项目。适用于与 Fabric RTI、KQL、实时分析、流式数据,或事件驱动的应用程序合作时使用。

SKILL.md
--- frontmatter
name: fabric-rti-mcp
description: Expert guidance for Microsoft Fabric Real-Time Intelligence (RTI) using the Fabric RTI MCP Server. Execute KQL queries on Eventhouse, manage Eventstreams for real-time data processing, create Activator triggers for alerting, and manage Map items. Use when working with Fabric RTI, KQL, real-time analytics, streaming data, or event-driven applications.

Microsoft Fabric RTI Expert

Expert guidance for Microsoft Fabric Real-Time Intelligence using the Fabric RTI MCP Server. Work with Eventhouse databases, Eventstreams, Activators, and Maps through natural language.

Core Capabilities

  1. Eventhouse/KQL (12 tools) - Query data, manage schemas, sample data
  2. Eventstreams (17 tools) - Build real-time streaming pipelines
  3. Activator (2 tools) - Create triggers and alerts
  4. Map (7 tools) - Manage data visualizations

Quick Reference

Eventhouse Tools

ToolPurpose
kusto_queryExecute KQL queries
kusto_list_tablesList tables in database
kusto_get_table_schemaGet table schema
kusto_sample_table_dataSample table records
kusto_ingest_inline_into_tableIngest CSV data

Eventstream Tools

ToolPurpose
eventstream_listList Eventstreams
eventstream_createCreate new Eventstream
eventstream_add_sample_data_sourceAdd sample data source
eventstream_add_eventhouse_destinationAdd Eventhouse destination
eventstream_validate_definitionValidate configuration

Activator Tools

ToolPurpose
activator_list_artifactsList triggers
activator_create_triggerCreate alert trigger

Map Tools

ToolPurpose
map_listList Maps
map_createCreate new Map
map_get_definitionGet Map configuration

Querying Data with KQL

kusto_query

Execute KQL queries against Eventhouse databases.

Parameters:

  • database (string) - Target database name
  • query (string) - KQL query text

Example:

kql
StormEvents
| where State == "ILLINOIS" and EventType == "Flood"
| summarize Count=count() by StartTime
| order by StartTime desc

kusto_sample_table_data

Get sample records from a table.

Parameters:

  • table_name (string)
  • sample_count (number, default: 10)

Managing Eventstreams

eventstream_create

Create a new Eventstream for real-time data processing.

Parameters:

  • workspace_id (string)
  • display_name (string)
  • description (string, optional)

eventstream_add_eventhouse_destination

Route data to Eventhouse for analytics.

Parameters:

  • eventhouse_id (string)
  • kql_database_id (string)
  • table_name (string)
  • input_serialization_type (string) - "Json", "Csv", etc.

Workflow

code
1. eventstream_start_definition
2. eventstream_add_sample_data_source
3. eventstream_add_eventhouse_destination
4. eventstream_validate_definition
5. eventstream_create_from_definition

Creating Activator Triggers

activator_create_trigger

Create triggers for real-time alerting.

Parameters:

  • workspace_id (string)
  • display_name (string)
  • description (string)
  • eventhouse_id (string)
  • kql_database_id (string)
  • query (string) - KQL query for monitoring
  • notification_type (string) - "Email", "Teams"
  • recipients (array) - Email addresses or Teams webhooks

Example: Monitor for floods and send email alert

code
Query: StormEvents | where EventType == "Flood" and State == "ILLINOIS"
Notification: Email to admin@company.com

Common Scenarios

Query Analysis

code
1. kusto_list_databases - Find databases
2. kusto_list_tables - Find tables
3. kusto_get_table_schema - Understand structure
4. kusto_query - Run analysis query

Real-Time Pipeline

code
1. eventstream_create - Create pipeline
2. eventstream_add_custom_endpoint_source - Add data source
3. eventstream_add_derived_stream - Transform data
4. eventstream_add_eventhouse_destination - Save to database
5. eventstream_validate_definition - Check config

Alerting Setup

code
1. kusto_query - Test alert condition
2. activator_create_trigger - Create alert
3. Monitor for notifications

When to Use This Skill

  • Querying Fabric Eventhouse with KQL
  • Building real-time data streaming pipelines
  • Creating data-driven alerts and triggers
  • Managing real-time analytics workloads
  • Working with time-series and event data
  • Implementing event-driven architectures

Keywords

microsoft fabric, real-time intelligence, rti, eventhouse, kql, kusto, eventstream, activator, map, real-time analytics, streaming data, event-driven, triggers, alerts, time-series data