What's wrong with this entry?
Anonymous. No account, no email.
What: A new tool that integrates Language Server Protocol servers to provide code intelligence features directly to Claude.
How to use:
# Claude can now use LSP operations when analyzing code
# The tool works automatically when LSP servers are configured
Supported operations:
goToDefinition: Find where a symbol is definedfindReferences: Find all references to a symbolhover: Get hover information (documentation, type info) for a symboldocumentSymbol: Get all symbols (functions, classes, variables) in a documentworkspaceSymbol: Search for symbols across the entire workspace
Configuration: LSP servers can be configured in two ways:
- Plugin-based configuration: Plugins can define LSP servers via
.lsp.jsonfiles or in their manifest'slspServersproperty - Project configuration: LSP server settings include command, args, supported languages, transport type (stdio/socket), initialization options, and workspace settings
Requirements:
- All operations require
filePath,line(0-indexed), andcharacter(0-indexed) parameters - LSP servers must be configured for the file type; operations will return an error if no server is available
Details:
- Evidence: LSP tool definition at
at1()at line 455338, LSP server manager initialization at line 454707 - Plugin LSP configuration loading at
Ig2()at line 454527 - Comprehensive error handling for LSP failures including:
lsp-config-invalid,lsp-server-start-failed,lsp-server-crashed,lsp-request-timeout,lsp-request-failed - LSP URI decoding support at line 205830 (
uO0()function)
Related
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.