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.
56pub mod server;
78pub use server::run;