docs/lsp-setup.md
DataHub uses three language servers to give Claude Code accurate code navigation
(goToDefinition, findReferences, workspaceSymbol) across the Java, Python, and TypeScript
layers.
Enabled per-project in .claude/settings.json:
{
"enabledPlugins": {
"jdtls-lsp@claude-plugins-official": true
}
}
No additional installation needed — the plugin is bundled with Claude Code.
Enabled globally in ~/.claude/settings.json:
{
"enabledPlugins": {
"pyright-lsp@claude-plugins-official": true
}
}
Pyright requires python to be on your PATH. The repo's mise.toml provides Python 3.11:
mise install # installs python 3.11 and other tools declared in mise.toml
Not yet configured. To enable it, add to ~/.claude/settings.json:
{
"enabledPlugins": {
"typescript-language-server-lsp@claude-plugins-official": true
}
}
Requires Node.js (provided by mise.toml).
Once enabled, LSP tools are available in Claude Code tool calls:
goToDefinition — jump to symbol definitionfindReferences — find all usagesworkspaceSymbol — search symbols by namehover — type info and docs