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
#include <iostream>
#include "math.h"
#include "utils.h"

int main() {
    std::cout << "Meson Test Project" << std::endl;
    std::cout << "5! = " << factorial(5) << std::endl;
    std::cout << "gcd(48, 18) = " << gcd(48, 18) << std::endl;
    print_message("Hello from Meson!");
    return 0;
}