// SPDX-License-Identifier: AGPL-3.0-or-later
// Copyright (C) 2026 Mark Wells <contact@markwells.dev>
//! Catenary is a bridge between MCP (Model Context Protocol) and LSP (Language Server Protocol).
//!
//! It allows AI coding assistants to access IDE-quality code intelligence by multiplexing
//! multiple language servers and exposing their capabilities via MCP tools.
/// Bridge logic between MCP and LSP.
/// Command-line interface definitions and utilities.
/// Configuration handling for language servers and session settings.
/// SQLite database connection management, schema creation, and migrations.
/// Tracing layer that captures errors and warnings to SQLite.
/// Diagnostic noise filtering for LSP server output.
/// IPC server for host CLI hook integration (diagnostics and root sync).
/// Grammar installation, listing, and removal for tree-sitter integration.
/// LSP client implementation and server management.
/// MCP server implementation and type definitions.
/// Session management and event broadcasting.
/// Interactive TUI for session browsing and event tailing.