claude-code-system-prompts/system-prompts/tool-description-lsp.md
2025-12-12 08:26:25 -07:00

896 B

Interact with Language Server Protocol (LSP) servers to get code intelligence features.

Supported operations:

  • goToDefinition: Find where a symbol is defined
  • findReferences: Find all references to a symbol
  • hover: Get hover information (documentation, type info) for a symbol
  • documentSymbol: Get all symbols (functions, classes, variables) in a document
  • workspaceSymbol: Search for symbols across the entire workspace
  • goToImplementation: Find implementations of an interface or abstract method

All operations require:

  • filePath: The file to operate on
  • line: The line number (1-based, as shown in editors)
  • character: The character offset (1-based, as shown in editors)

Note: LSP servers must be configured for the file type. If no server is available, an error will be returned.