Kate QML LSP stopped working

Hi all,
I have noticed that QML LSP stopped working. I use Arch Linux and I can’t be exactly sure, but it might be Kate (24.12.1-1 → 24.12.2-1) upgrade that did something. I have qmlls in $PATH, and Kate can see qml LSP: IMAGE_LINK
I didn’t install/delete anything.

error: 14:41:12  LSP Client Warning] Failed to find server binary: qmlls Please check your PATH for the binary See also https://code.qt.io/cgit/qt/qtdeclarative.git/tree/src/qmlls for installation or details

It worked last week. Still LSP is working for C/C++ but not for QML.

Any suggestions?

bad63r

For anyone who also/still bumps into this. I also just bumped into this and resolved the issue by creating a symlink to the QML Language Server qmlls.

ls -lah /usr/bin/qmlls6
lrwxrwxrwx 1 root root 20 2026-06-03 23:34 /usr/bin/qmlls6 -> ../lib/qt6/bin/qmlls
ls -lah /usr/lib/qt6/bin/qmlls
-rwxr-xr-x 1 root root 4,4M 2026-06-03 23:34 /usr/lib/qt6/bin/qmlls
sudo ln -s -T ../lib/qt6/bin/qmlls /usr/bin/qmlls && ls -lah /usr/bin/qmlls*
lrwxrwxrwx 1 root root 20 2026-06-18 22:47 /usr/bin/qmlls -> ../lib/qt6/bin/qmlls
lrwxrwxrwx 1 root root 20 2026-06-03 23:34 /usr/bin/qmlls6 -> ../lib/qt6/bin/qmlls