Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Lsp Standalone

FreeNot checked

Exposes LSP features (definition, hover, references, etc.) over MCP, spawning an isolated language server process per project.

GitHubEmbed

About

Exposes LSP features (definition, hover, references, etc.) over MCP, spawning an isolated language server process per project.

README

A VS Code extension that exposes LSP features (definition / hover / references / declaration / document symbols) over MCP, using an isolated language server process spawned by the extension itself.

Key properties:

  • Zero global-settings pollution: the extension spawns its own gopls process; it does NOT touch any go.* VS Code setting, so other projects' native gopls / code navigation keep working.
  • Multi-repo aware: it reads VS Code workspaceFolders and passes them to gopls, so cross-repo symbols defined in other modules resolve.
  • Direct LSP requests: it calls gopls via textDocument/definition etc. directly, bypassing the vscode.executeDefinitionProvider documentSelector limitation that makes other MCP bridges fail on cross-folder files.

Build & install

pnpm install
pnpm build
pnpm package      # produces lsp-mcp-standalone.vsix

Install the vsix in your VS Code / VSCode-Server, then add to your project's mcp.json:

{
  "mcpServers": {
    "lsp-mcp-standalone": {
      "url": "http://127.0.0.1:9528/mcp"
    }
  }
}

Tools

  • definition(uri, line, character)
  • declaration(uri, line, character)
  • hover(uri, line, character)
  • references(uri, line, character)
  • document_symbols(uri)

All positions are 1-based (matching editor display).

from github.com/Paisins/lsp_mcp_extension

Installing Lsp Standalone

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/Paisins/lsp_mcp_extension

FAQ

Is Lsp Standalone MCP free?

Yes, Lsp Standalone MCP is free — one-click install via Unyly at no cost.

Does Lsp Standalone need an API key?

No, Lsp Standalone runs without API keys or environment variables.

Is Lsp Standalone hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Lsp Standalone in Claude Desktop, Claude Code or Cursor?

Open Lsp Standalone on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Lsp Standalone with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs