clangd-mcp-server
Provides tools for C++ code intelligence via clangd, including finding definitions, references, type information, symbol search, implementations, diagnostics, and hierarchy queries.
Integrates with clangd, the LLVM-based C++ language server, to enable code navigation and analysis capabilities for large C++ codebases.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@clangd-mcp-serverFind definition of Logger::Log in logger.h"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Clangd MCP Server
Model Context Protocol server for clangd on large C++ codebases.
This MCP provides coding agents like Claude Code with a collection of tools that they may use to answer natural language queries from the user:
find_definition: Jump to symbol definitions"Find the definition at src/foo.cpp:42:10"
find_references: Find all references to a symbol"Find all references to the function at bar.h:100"
get_hover: Get type information and documentation"What's the type at baz.cpp:200:15?"
workspace_symbol_search: Search symbols across workspace"Find symbols matching 'HttpRequest'"
find_implementations: Find interface/virtual method implementations"Find implementations of interface.h:50"
get_document_symbols: Get hierarchical symbol tree for a file"Show all symbols in main.cpp"
get_diagnostics: Get compiler errors, warnings, and notes"Show errors in src/foo.cpp"
get_call_hierarchy: Get function callers and callees"Show callers/callees at main.cpp:100:5"
get_type_hierarchy: Get base classes and derived classes"Show base/derived classes at foo.h:42"
Requirements
Node.js >= 18.0.0
clangd
A C++ project with
compile_commands.json
Installation
# From npm (eventually!)
# npm install -g clangd-mcp-server
# From source
git clone https://github.com/felipeerias/clangd-mcp-server.git
cd clangd-mcp-server
npm install && npm run build && npm linkConfiguration
Generating compile_commands.json
CMake: cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON /path/to/source
GN (Chromium): gn gen out/Default
gn gen --export-compile-commands out/default
ln -sf out/Default/compile_commands.json .
claude mcp add clangd-mcp-server clangd-mcp-serverOther: Check your project's documentation.
Claude Code Configuration
claude mcp add clangd-mcp-server clangd-mcp-serverOr add manually to ~/.claude.json or .claude.json:
{
"mcpServers": {
"clangd": {
"command": "clangd-mcp-server",
"env": {"PROJECT_ROOT": "/path/to/your/project"},
"alwaysAllow": ["*"]
}
}
}The alwaysAllow: ["*"] field allows all tools to run without prompting for user approval.
Project-Specific Configuration (CLAUDE.md)
To help Claude Code automatically use clangd MCP tools for your C++ project, add to your project's CLAUDE.md:
## C++ Code Navigation
This project uses the clangd MCP server for C++ code intelligence. Use these tools for:
- Finding definitions and references
- Getting type information
- Searching symbols
- Finding implementations
- Getting diagnosticsEnvironment Variables
Variable | Description | Default |
| Project workspace root | Current directory |
| Path to compile_commands.json directory | Auto-detected |
| Path to clangd binary | Auto-detected |
| Additional clangd arguments | Auto-configured |
| MCP log level (ERROR/WARN/INFO/DEBUG) |
|
| Clangd log level |
|
Clangd auto-detection order: CLANGD_PATH → project bundled (Chromium: third_party/llvm-build/.../clangd) → system PATH
Some large projects bundle their own clangd.
Chromium is auto-detected at third_party/llvm-build/Release+Asserts/bin/clangd.
For other projects in a similar situation, set CLANGD_PATH to specify the bundled clangd.
For bettern performance, background indexing is disabled by default. Usually there is already an axisting clangd server taking care of indexing the codebase. You can enable it with:
{"env": {"CLANGD_ARGS": "--background-index --limit-results=1000"}}Large projects might consider using remote index.
Verbose logging may be enabled with:
{"env": {"LOG_LEVEL": "DEBUG", "CLANGD_LOG_LEVEL": "verbose"}}Examples:
// Chromium (auto-detects bundled clangd)
{"mcpServers": {"clangd": {"command": "clangd-mcp-server",
"env": {"PROJECT_ROOT": "/home/user/chromium/src"},
"alwaysAllow": ["*"]}}}
// Custom clangd binary
{"mcpServers": {"clangd": {"command": "clangd-mcp-server",
"env": {"CLANGD_PATH": "/custom/path/clangd"},
"alwaysAllow": ["*"]}}}
// Custom args (e.g., enable background indexing)
{"mcpServers": {"clangd": {"command": "clangd-mcp-server",
"env": {"CLANGD_ARGS": "--background-index --limit-results=1000"},
"alwaysAllow": ["*"]}}}Architecture
Claude Code
↓ MCP (stdio)
clangd-mcp-server
├── ClangdManager (lifecycle, health monitoring)
├── LSPClient (JSON-RPC over stdio)
├── FileTracker (didOpen/didClose)
└── Tools (find_definition, find_references, etc.)
↓ LSP requests
clangd subprocessDevelopment
npm install # Install
npm run build # Build
npm run watch # Watch mode
npm test # Run tests
node dist/index.js # Test locallyLicense
MPL-2.0 - See LICENSE
References
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/felipeerias/clangd-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server