MCP-MultilspyLSP provides Language Server Protocol (LSP) capabilities to language models through the multilspy library, enabling code intelligence features like finding definitions, references, completions, and documentation across multiple programming languages including Python, Java, TypeScript, and more. Built by Asim Ihsan, this server exposes a consistent API for language intelligence that works with any MCP-compatible client like Claude Desktop, making it valuable for developers who need to analyze and understand code without switching contexts or installing language-specific tooling.
아직 리뷰가 없습니다. 첫 번째 리뷰를 작성해 보세요!
대화에 참여하려면 로그인하세요
Initializes a language server session. Parameters: session_id (string), project_root (string), language (string)
Finds where a symbol is defined. Parameters: session_id (string), file_path (string), line (integer), column (integer)
Finds all references to a symbol. Parameters: session_id (string), file_path (string), line (integer), column (integer)
Gets code completion suggestions. Parameters: session_id (string), file_path (string), line (integer), column (integer)
Gets hover information for a symbol. Parameters: session_id (string), file_path (string), line (integer), column (integer)
Gets document symbols for a file. Parameters: session_id (string), file_path (string)
Cleans up and shuts down the language server session. Parameters: session_id (string)