Catalog
github/lsp-setup

github

lsp-setup

Enable code intelligence (go-to-definition, find-references, hover, type info) for any programming language by installing and configuring an LSP server for Copilot CLI. Detects the OS, installs the right server, and generates the JSON configuration (user-level or repo-level). Use when you need deeper code understanding and no LSP server is configured, or when the user asks to set up, install, or configure an LSP server.

v1.0Latest
New~985Updated Jun 26, 2026

LSP Setup for GitHub Copilot CLI

UTILITY SKILL — installs and configures Language Server Protocol servers for Copilot CLI. USE FOR: "setup LSP", "install language server", "configure LSP for Java", "add TypeScript LSP", "enable code intelligence", "I need go-to-definition", "find references not working", "need better code understanding" DO NOT USE FOR: general coding tasks, IDE/editor LSP configuration, non-Copilot-CLI setups

Workflow

  1. Ask the language — use ask_user to ask which programming language(s) the user wants LSP support for
  2. Detect the OS — run uname -s (or check for Windows via $env:OS / %OS%) to determine macOS, Linux, or Windows
  3. Look up the LSP server — read references/lsp-servers.md for known servers, install commands, and config snippets
  4. Ask scope — use ask_user to ask whether the config should be user-level (~/.copilot/lsp-config.json) or repo-level (lsp.json at the repo root or .github/lsp.json)
  5. Install the server — run the appropriate install command for the detected OS
  6. Write the config — merge the new server entry into the chosen config file (~/.copilot/lsp-config.json for user-level; lsp.json or .github/lsp.json for repo-level). If a repo-level config already exists, keep using that location; otherwise ask the user which repo-level location they prefer. Create the file if missing and preserve existing entries.
  7. Verify — confirm the LSP binary is on $PATH and the config file is valid JSON

Configuration Format

Copilot CLI reads LSP configuration from user-level or repo-level locations, and repo-level config takes precedence over user-level config:

  • User-level: ~/.copilot/lsp-config.json
  • Repo-level: lsp.json (repo root) or .github/lsp.json

The JSON structure:

{
  "lspServers": {
    "<server-key>": {
      "command": "<binary>",
      "args": ["--stdio"],
      "fileExtensions": {
        ".<ext>": "<languageId>",
        ".<ext2>": "<languageId>"
      }
    }
  }
}

Key rules

  • command is the binary name (must be on $PATH) or an absolute path.
  • args almost always includes "--stdio" to use standard I/O transport.
  • fileExtensions maps each file extension (with leading dot) to a Language ID.
  • Multiple servers can coexist in lspServers.
  • When merging into an existing file, never overwrite other server entries — only add or update the target language key.

Behavior

  • Always use ask_user with choices when asking the user to pick a language or scope.
  • If the language is not listed in references/lsp-servers.md, search the web for " LSP server" and guide the user through manual configuration.
  • If a package manager is not available (e.g. no Homebrew on macOS), suggest alternative install methods from the reference file.
  • After installation, run which <binary> (or where.exe on Windows) to confirm the binary is accessible.
  • Show the user the final config JSON before writing it.
  • If the config file already exists, read it first and merge — do not clobber.

Verification

After setup, tell the user:

  1. Type /exit to quit Copilot CLI — this is required so the new LSP configuration is loaded on next launch
  2. Re-launch copilot in a project with files of the configured language
  3. Run /lsp to check the server status
  4. Try code intelligence features like go-to-definition or hover
Files2
2 files · 9.5 KB

Select a file to preview

Overall Score

87/100

Grade

A

Excellent

Safety

88

Quality

86

Clarity

88

Completeness

85

Summary

This skill enables Language Server Protocol (LSP) server installation and configuration for GitHub Copilot CLI across multiple programming languages. It guides agents to detect the OS, install the appropriate LSP binary, and generate or merge JSON configuration files at either user-level or repo-level scope. The skill provides a comprehensive reference of 15+ languages with install commands and config snippets for each.

Detected Capabilities

shell execution (uname, where, which)file read (lsp-servers.md reference, existing config files)file write (create/merge user-level or repo-level JSON config)user prompting (ask_user for language and scope selection)environment/path checking ($PATH, $JAVA_HOME, $OS)

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

install language serversetup LSPconfigure code intelligenceenable go-to-definitionadd typescript lspjava language serverpython lsp setupcopilot cli lsp

Referenced Domains

External domains referenced in skill content, detected by static analysis.

clangd.llvm.orgcode.visualstudio.comdot.netdownload.eclipse.orggithub.comreleases.llvm.orgswift.org

Use Cases

  • +Enable code intelligence features (go-to-definition, hover, type info) for a language not yet configured
  • Install a language-specific LSP server on a developer's system
  • Configure Copilot CLI with multiple LSP servers in a single repo or user profile
  • Troubleshoot missing code intelligence by setting up the right LSP server for a project
  • Merge a new LSP server entry into an existing Copilot CLI configuration without losing other entries

Quality Notes

  • Strong reference document (lsp-servers.md) with 15+ languages, clear install commands per OS, and ready-to-use config snippets
  • Workflow is explicit and step-by-step, making it easy for an agent to follow
  • Configuration format is well-documented with JSON structure rules and a key section on merging behavior (never overwrite existing entries)
  • Verification steps are clear and actionable (confirm binary on PATH, validate JSON, reload Copilot CLI)
  • Edge cases handled: missing package managers, fallback to manual install, web search for unlisted languages
  • File paths are relative and scoped appropriately (user-level ~/.copilot/lsp-config.json or repo-level lsp.json/.github/lsp.json)
  • Supports OS detection (macOS, Linux, Windows) with platform-specific install commands
  • Preservation of existing config entries is explicitly mandated, reducing risk of data loss
  • Uses ask_user with choices for structured input, improving reliability
Model: claude-haiku-4-5-20251001Analyzed: Jun 26, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Use github/lsp-setup in your dev environment

Command Palette

Search for a command to run...