The CodeGraph MCP (Model Context Protocol) family is a suite of modular crates designed to provide agentic tools and graph-based context to LLMs. The suite is divided into core protocol implementations, server management, background services, and specialized toolsets.
Key components include:
codegraph-mcp-core: Shared traits and types for the MCP protocol.codegraph-mcp-server: The primary binary/library for running the MCP server, managing connection lifecycles via Stdio or SSE.codegraph-mcp-daemon: A background service for filesystem watching (triggering incremental re-indexing) and long-running graph state management.codegraph-mcp-tools: A collection of tools for semantic/exact search and graph traversal.codegraph-mcp-autoagents: Experimental autonomous agents using an Observation -> Thought -> Action loop.codegraph-mcp-rig: Scaffolding for developing and testing new MCP tools.