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>

/// Low-level LSP client for communicating with a server process.
pub mod client;
/// Transport layer: process lifecycle, reader loop, request/response correlation.
pub(crate) mod connection;
/// Diagnostics strategy selection and activity monitoring.
pub(crate) mod diagnostics;
/// Extractor functions for LSP response and notification fields.
pub(crate) mod extract;
/// High-level manager for lazy-spawning and caching LSP clients.
pub mod manager;
/// Builder functions for LSP request and notification parameters.
pub(crate) mod params;
/// LSP message protocol definitions.
pub mod protocol;
/// Server profile: init-time capabilities and runtime observations.
pub(crate) mod server;
/// Settle sampling loop: polls process tree and yields per-process samples.
pub mod settle;
/// Server state and progress tracking.
pub mod state;
/// Small local types for LSP concepts.
pub(crate) mod types;
/// Unified wait infrastructure for load-aware failure detection.
pub(crate) mod wait;

pub use client::{DiagnosticsWaitResult, LspClient};
pub use manager::LspClientManager;
pub use server::LspServer;
pub use state::{ProgressTracker, ServerLifecycle, ServerStatus};