mcp-cpp-server 0.2.2

A high-performance Model Context Protocol (MCP) server for C++ code analysis using clangd LSP integration
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! LSP Helper Functions
//!
//! This module contains helper functions that wrap LSP operations with
//! domain-specific logic for C++ code analysis.

pub mod call_hierarchy;
pub mod definitions;
pub mod document_symbols;
pub mod examples;
pub mod hover;
pub mod members;
pub mod symbol_resolution;
pub mod type_hierarchy;
pub mod workspace_symbols;