codebase-graph 1.5.1

Native codebaseGraph CLI and MCP server for local code knowledge graphs.
1
2
3
4
5
6
7
8
9
10
11
//! Process-lifetime service boundary for the repository-scoped MCP daemon.
//!
//! Lifecycle and command adapters depend on this neutral boundary instead of
//! importing each other. The HTTP implementation remains an MCP transport
//! detail behind these re-exports.

pub(crate) use crate::adapters::mcp::{
    repository_fingerprint, serve_mcp_daemon, service_id, stable_daemon_port, start_mcp_daemon,
    status_mcp_daemon, stop_mcp_daemon, verify_daemon_endpoint, McpDaemonOptions, McpDaemonSpec,
    DAEMON_TRANSPORT_VERSION,
};