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.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
Initialize a session with a language server. Parameters: session_id (string), project_root (string), language (string)
Find where a symbol is defined. Parameters: session_id (string), file_path (string), line (integer), column (integer)
Find all references to a symbol. Parameters: session_id (string), file_path (string), line (integer), column (integer)
Get code completion suggestions. Parameters: session_id (string), file_path (string), line (integer), column (integer)
Get hover information for a specific position. Parameters: session_id (string), file_path (string), line (integer), column (integer)
Get document symbols in a file. Parameters: session_id (string), file_path (string)
Clean up and shut down the language server session. Parameters: session_id (string)