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
//! MCP Server implementation module
//!
//! This module contains the complete MCP (Model Context Protocol) server implementation
//! for C++ code analysis, including the server handler, helper utilities, and all
//! available tools for semantic analysis.

pub mod server;
pub mod server_helpers;
pub mod tools;

// Re-export main components for easier access
pub use server::CppServerHandler;