mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-10 16:05:58 +00:00
11 lines
414 B
Rust
11 lines
414 B
Rust
//! Model Context Protocol (MCP) implementation for Windmill
|
|
//!
|
|
//! This module provides the MCP server implementation that exposes Windmill scripts,
|
|
//! flows, and API endpoints as MCP tools for AI assistants to interact with.
|
|
|
|
pub mod server;
|
|
pub mod tools;
|
|
pub mod utils;
|
|
|
|
// Re-export main components
|
|
pub use server::{extract_and_store_workspace_id, setup_mcp_server, shutdown_mcp_server, list_tools_service}; |