lspz 0.11.3

AI-friendly LSP compression proxy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # lspz MCP server
//!
//! Exposes LSP diagnostics, completions, and symbols as MCP tools
//! using the official [`rmcp`] SDK.

mod daemon_server;
mod pool;
mod server;
mod session;

pub use daemon_server::DaemonMcpServer;
pub use pool::LspPool;
pub use server::McpServer;
pub use session::{InitializeParams, LspSession};