mcp-lsp-bridge

(★ 29)

MCP LSP bridge server bringing LSP to your LLM

File Explorer

  • .gitignore
  • .golangci.yml
  • .goreleaser.yaml
  • .pre-commit-config.yaml
  • CHANGELOG.md
  • Dockerfile
  • go.mod
  • go.sum
  • LICENSE
  • lsp_config.example.json
  • lsp_spec_parser.py
  • main.go
  • main_test.go
  • Makefile
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

docker pull

View Details ▼

This command is an alias of `docker image pull`.

tldr docker image pull

View documentation for the original command:

🔍

go build

View Details ▼

Compile Go sources.

go build {{path/to/main.go}}

Compile a 'package main' file (output will be the filename without extension):

go build -o {{path/to/binary}} {{path/to/source.go}}

Compile, specifying the output filename:

go build -o {{path/to/binary}} {{path/to/package}}

Compile a package:

// repository documentation