mcpls-core 0.3.9

Core library for MCP to LSP protocol translation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! MCP tool definitions and handlers.
//!
//! This module defines the MCP tools that expose LSP capabilities
//! to AI agents.

mod handlers;
mod server;
mod tools;

pub use server::McplsServer;
pub use tools::{
    CallHierarchyCallsParams, CompletionsParams, DiagnosticsParams, DocumentSymbolsParams,
    FormatDocumentParams, PositionParams, RangeParams, ReferencesParams, RenameParams,
    WorkspaceSymbolParams,
};