codebase-graph 1.3.0

Native codebaseGraph CLI and MCP server for local code knowledge graphs.
1
2
3
4
5
6
use super::options::McpServeOptions;
use crate::api::CodebaseGraphApi;

pub(in crate::adapters) fn start_auto_refresh(options: &McpServeOptions) -> CodebaseGraphApi {
    CodebaseGraphApi::with_auto_refresh(options.repo_selector())
}