catenary-mcp 1.5.0

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: GPL-3.0-or-later
// Copyright (C) 2026 Mark Wells <contact@markwells.dev>

/// Diagnostics pipeline for PostToolUse hook requests.
pub mod diagnostics_server;
/// Manages document lifecycle and sync between disk and LSP servers.
mod document_manager;
/// Glob tool handler: unified file/directory/pattern browsing.
mod file_tools;
/// Maps MCP tool calls to LSP requests.
mod handler;
/// Path validation for LSP-aware operations and config file protection.
pub mod path_security;
/// Replace tool core: input parsing, edit application, output rendering.
pub mod replace;
/// Shared symbol types and helpers for handler and file_tools.
mod symbols;
/// Workspace root synchronization for PreToolUse hook requests.
pub mod sync_roots_server;
/// Transformation layer trait between protocol boundaries and LSP.
pub mod tool_server;

pub use diagnostics_server::DiagnosticsServer;
pub use document_manager::{DocumentManager, DocumentNotification};
pub use handler::LspBridgeHandler;
pub use path_security::PathValidator;
pub use sync_roots_server::SyncRootsServer;
pub use tool_server::ToolServer;