Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From syntaqlite
Syntaqlite LSP server provides code intelligence for SQL (.sql files) — diagnostics, go-to-definition, find references, hover information, and symbol listing.
npx claudepluginhub lalitmaganti/claude-code-plugin --plugin syntaqliteThis LSP server requires syntaqliteto 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": {
"sql": {
"command": "syntaqlite",
"extensionToLanguage": {
".sql": "sql"
},
"args": [
"lsp"
]
}
}
}File extensions mapped to language identifiers
Server configuration and transport parameters
syntaqlitestdioCommand-line arguments passed to the server process
Initialization options and workspace settings
Share bugs, ideas, or general feedback.