From graphql
GraphQL language server provides code intelligence for GraphQL — diagnostics, go-to-definition, find references, hover information, and symbol listing for .graphql and .gql files.
npx claudepluginhub thebushidocollective/han --plugin graphqlThis LSP server requires ${CLAUDE_PLUGIN_ROOT}/scripts/lsp-entrypoint.shto be installed on your system. Make sure it's available in your PATH before enabling.
Add to your .lsp.json or plugin.json:
{
"lspServers": {
"graphql": {
"command": "${CLAUDE_PLUGIN_ROOT}/scripts/lsp-entrypoint.sh",
"extensionToLanguage": {
".gql": "graphql",
".graphql": "graphql"
},
"args": [
"server",
"-m",
"stream"
]
}
}
}${CLAUDE_PLUGIN_ROOT}/scripts/lsp-entrypoint.shstdio