Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From astral
Ty language server provides code intelligence for Python — diagnostics, go-to-definition, find references, hover information, and type checking for .py and .pyi files.
npx claudepluginhub astral-sh/claude-code-plugins --plugin astralThis LSP server requires uvxto be installed on your system. Make sure it's available in your PATH before enabling.
Copy this JSON into your .lsp.json to enable this server
Add to your .lsp.json or plugin.json:
{
"lspServers": {
"ty": {
"command": "uvx",
"extensionToLanguage": {
".py": "python",
".pyi": "python"
},
"args": [
"ty@latest",
"server"
]
}
}
}File extensions mapped to language identifiers
Server configuration and transport parameters
uvxstdioCommand-line arguments passed to the server process
Initialization options and workspace settings
Share bugs, ideas, or general feedback.