catenary-mcp 1.6.1

A high-performance multiplexing bridge between MCP (Model Context Protocol) and LSP (Language Server Protocol). Enables LLMs to access IDE-grade code intelligence across multiple languages simultaneously with smart routing and UTF-8 accuracy.
Documentation
// 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.
pub mod bridge;
/// Command-line interface definitions and utilities.
pub mod cli;
/// Configuration handling for language servers and session settings.
pub mod config;
/// SQLite database connection management, schema creation, and migrations.
pub mod db;
/// Tracing layer that captures errors and warnings to SQLite.
pub mod error_layer;
/// Diagnostic noise filtering for LSP server output.
pub mod filter;
/// IPC server for host CLI hook integration (diagnostics and root sync).
pub mod hook;
/// Grammar installation, listing, and removal for tree-sitter integration.
pub mod install;
/// LSP client implementation and server management.
pub mod lsp;
/// MCP server implementation and type definitions.
pub mod mcp;
/// Session management and event broadcasting.
pub mod session;
/// Interactive TUI for session browsing and event tailing.
pub mod tui;