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
//! Symbol abstraction module
//!
//! Provides a clean Symbol abstraction that uses std types and lsp_types::SymbolKind
//! while enabling conversion from LSP WorkspaceSymbol responses.

mod location;
#[allow(clippy::module_inception)]
mod symbol;

pub use location::{FileLocation, uri_from_pathbuf};
pub use symbol::Symbol;