We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jasondk/clangaroo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•404 B
"""
Rich-Context MCP Service for C++ Code Intelligence
A Python-based bridge between MCP (Model Context Protocol) and clangd's
LSP (Language Server Protocol) capabilities, providing Claude Code with
fast, reliable C++ code intelligence.
"""
__version__ = "0.2.0"
__author__ = "Rich Context Team"
from .server import MCPClangdServer
from .config import Config
__all__ = ["MCPClangdServer", "Config"]