1 2 3 4 5 6 7 8 9 10 11 12
//! # lspz MCP server //! //! Exposes LSP diagnostics, completions, and symbols as MCP tools //! using the official [`rmcp`] SDK. mod pool; mod server; mod session; pub use pool::LspPool; pub use server::McpServer; pub use session::{InitializeParams, LspSession};