
LSP Setup for Copilot CLI
OfficialFreeStreamline LSP server installation for Copilot CLI.
Free · Opens the source repo
What LSP Setup for Copilot CLI does
The LSP Setup skill for GitHub Copilot CLI enables developers to easily install and configure Language Server Protocol (LSP) servers tailored to their programming language needs. This skill is particularly useful for those who require enhanced code intelligence features such as go-to-definition, find-references, and hover documentation, but lack the necessary LSP server setup. By automating the installation process, it saves time and reduces the complexity of manual configurations.
When a user invokes the skill, it begins by asking which programming language(s) they want to support. It then detects the operating system—macOS, Linux, or Windows—to ensure the correct installation commands are used. The skill references a bundled file containing known LSP servers and their respective installation instructions. Depending on the user's preference, it can configure the LSP server at either a user-level or a repository-level, ensuring flexibility based on the project requirements.
Once the appropriate LSP server is installed, the skill generates a JSON configuration file that integrates seamlessly with Copilot CLI. It carefully merges new entries with existing configurations to avoid overwriting any previous settings. After installation, the skill verifies that the LSP binary is accessible and the configuration file is valid, providing a smooth setup experience. This skill is ideal for developers looking to enhance their coding environment with minimal effort and maximum efficiency.
When to use it
Use this skill when you need to set up an LSP server for Copilot CLI to enhance code understanding and functionality.
When not to use it
This skill is not suitable for general coding tasks or for configuring LSP in IDEs other than Copilot CLI.
What you can build with it
Setting Up TypeScript LSP
A developer wants to enable TypeScript support in Copilot CLI. They use the skill to install the TypeScript LSP server and configure it for their project.
Configuring LSP for Python
A user needs code intelligence features for Python in Copilot CLI. They run the skill to set up the Python LSP server seamlessly.
Updating LSP Configurations
A team is working on a shared repository and needs to add a new LSP server. They utilize the skill to merge the new server configuration without losing existing settings.
How to install LSP Setup for Copilot CLI
View source1. Install with the skills CLI
npx skills add github/awesome-copilot/lsp-setup --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by githubLSP 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
- Ask the language — use
ask_userto ask which programming language(s) the user wants LSP support for - Detect the OS — run
uname -s(or check for Windows via$env:OS/%OS%) to determine macOS, Linux, or Windows - Look up the LSP server — read
references/lsp-servers.mdfor known servers, install commands, and config snippets - Ask scope — use
ask_userto ask whether the config should be user-level (~/.copilot/lsp-config.json) or repo-level (lsp.jsonat the repo root or.github/lsp.json) - Install the server — run the appropriate install command for the detected OS
- Write the config — merge the new server entry into the chosen config file (
~/.copilot/lsp-config.jsonfor user-level;lsp.jsonor.github/lsp.jsonfor 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. - Verify — confirm the LSP binary is on
$PATHand 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
commandis the binary name (must be on$PATH) or an absolute path.argsalmost always includes"--stdio"to use standard I/O transport.fileExtensionsmaps 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_userwithchoiceswhen asking the user to pick a language or scope. - If the language is not listed in
references/lsp-servers.md, search the web for "<language> 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>(orwhere.exeon 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:
- Type
/exitto quit Copilot CLI — this is required so the new LSP configuration is loaded on next launch - Re-launch
copilotin a project with files of the configured language - Run
/lspto check the server status - Try code intelligence features like go-to-definition or hover
Frequently asked questions about LSP Setup for Copilot CLI
Similar skills
Rhino 3D Scripting
Streamline your Rhinoceros 3D scripting tasks.
MVVM Toolkit
Streamline ViewModel development with source generators.
FreeCAD Scripts
Generate Python scripts for FreeCAD automation and modeling.
Azure Architecture Builder
Design and deploy Azure infrastructure using natural language.
Command Development
Streamline your command creation for Claude Code.
Create Cowork Plugin
Easily build and package plugins through guided sessions.
