Pylsp (Python Language Server) provides code intelligence for Python — diagnostics, go-to-definition, find references, hover info, symbols, and call hierarchy for .py/.pyi files.
From developer-kit-pythonnpx claudepluginhub giuseppe-trisciuoglio/developer-kit --plugin developer-kit-pythonThis LSP server requires pylspto be installed on your system. Make sure it's available in your PATH before enabling.
Add to your .lsp.json or plugin.json:
{
"lspServers": {
"pylsp": {
"command": "pylsp",
"extensionToLanguage": {
".py": "python",
".pyi": "python"
},
"args": [
"--vy"
]
}
}
}pylspstdio