1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! LSP MCP Server
//!
//! An MCP server that provides unified access to Language Server Protocol features
//! for multiple programming languages.
//!
//! # Features
//!
//! - Multi-language support (Rust, TypeScript, Python, Go, C/C++)
//! - Full IDE features exposed as MCP tools:
//! - Hover (type info, documentation)
//! - Go to Definition
//! - Find References
//! - Code Completion
//! - Document Symbols
//! - Workspace Symbols
//! - Rename
//! - Diagnostics
//!
//! # Usage
//!
//! ```no_run
//! use lsp_mcp::server::LspMcpServer;
//!
//! #[tokio::main]
//! async fn main() {
//! let server = LspMcpServer::new();
//! // Start the MCP server...
//! }
//! ```
pub use ;
pub use ;
pub use LspMcpServer;