intent_engine/mcp/
mod.rs

1//! MCP (Model Context Protocol) server implementation
2//!
3//! This module provides the MCP server functionality that allows AI assistants
4//! to interact with Intent-Engine through the JSON-RPC 2.0 protocol.
5
6pub mod server;
7pub mod ws_client;
8
9pub use server::run;