Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From kotlin-lsp
Kotlin Language Server (kotlin-language-server) provides code intelligence for Kotlin — diagnostics, go-to-definition, find references, hover info, symbols for .kt and .kts files.
npx claudepluginhub boostvolt/claude-code-lsps --plugin kotlin-lspThis LSP server requires kotlin-lspto 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": {
"kotlin": {
"command": "kotlin-lsp",
"extensionToLanguage": {
".kt": "kotlin",
".kts": "kotlin"
}
}
}
}File extensions mapped to language identifiers
Server configuration and transport parameters
kotlin-lspstdioInitialization options and workspace settings
Share bugs, ideas, or general feedback.