Files
windmill/backend/windmill-api/src/mcp/mod.rs
T
2025-08-13 23:16:49 +00:00

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};