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
//! MCP Server Tools Module
//!
//! This module contains all the tools available through the MCP server,
//! including symbol analysis, project analysis, and LSP helper functions.

pub mod analyze_symbols;
pub mod lsp_helpers;
pub mod project_tools;
pub mod search_symbols;
pub mod utils;

#[cfg(feature = "clangd-integration-tests")]
pub mod tests;