mcp-lsp-bridge

(★ 29)

MCP LSP bridge server bringing LSP to your LLM

파일 탐색기

  • .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

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

docker pull

설명 보기 ▼

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

tldr docker image pull

View documentation for the original command:

🔍

go build

설명 보기 ▼

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