{"id":15346433,"url":"https://github.com/messense/multi-lsp-proxy","last_synced_at":"2025-10-11T00:30:44.344Z","repository":{"id":65255037,"uuid":"589082922","full_name":"messense/multi-lsp-proxy","owner":"messense","description":"A LSP proxy to multiple language servers","archived":true,"fork":false,"pushed_at":"2023-01-15T09:22:02.000Z","size":57,"stargazers_count":55,"open_issues_count":1,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-09-20T23:55:43.028Z","etag":null,"topics":["helix","helix-editor","language-server-protocol"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/messense.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2023-01-15T01:44:21.000Z","updated_at":"2025-08-21T10:52:09.000Z","dependencies_parsed_at":"2023-01-15T23:31:15.933Z","dependency_job_id":null,"html_url":"https://github.com/messense/multi-lsp-proxy","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/messense/multi-lsp-proxy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/messense%2Fmulti-lsp-proxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/messense%2Fmulti-lsp-proxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/messense%2Fmulti-lsp-proxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/messense%2Fmulti-lsp-proxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/messense","download_url":"https://codeload.github.com/messense/multi-lsp-proxy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/messense%2Fmulti-lsp-proxy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279005659,"owners_count":26083942,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["helix","helix-editor","language-server-protocol"],"created_at":"2024-10-01T11:22:30.294Z","updated_at":"2025-10-11T00:30:44.076Z","avatar_url":"https://github.com/messense.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# multi-lsp-proxy\n\n[![GitHub Actions](https://github.com/messense/multi-lsp-proxy/workflows/CI/badge.svg)](https://github.com/messense/multi-lsp-proxy/actions?query=workflow%3ACI)\n[![PyPI](https://img.shields.io/pypi/v/multi-lsp-proxy.svg)](https://pypi.org/project/multi-lsp-proxy)\n[![Crates.io](https://img.shields.io/crates/v/multi-lsp-proxy.svg?logo=rust)](https://crates.io/crates/multi-lsp-proxy)\n\nA **barely working** LSP Proxy to multiple language servers, to use multiple LSPs per language in\neditors that doesn't support multiple LSPs per language natively like Helix (version 22.12).\n\n## Installation\n\nInstall with [pipx](https://github.com/pypa/pipx/) is recommended:\n\n```bash\npipx install multi-lsp-proxy\n```\n\nPip also works:\n\n```bash\npip install multi-lsp-proxy\n```\n\n## Usage\n\n```bash\nUsage: multi-lsp-proxy [OPTIONS] --config \u003cCONFIG\u003e\n\nOptions:\n  -c, --config \u003cCONFIG\u003e      Configuration file path\n  -l, --language \u003cLANGUAGE\u003e  Select language servers by programming language name\n  -h, --help                 Print help\n  -V, --version              Print version\n```\n\nTo use with Helix, set the `language-server` option in `languages.toml`,\nbelow is an example for Python that enables both `pyright-langserver` and `ruff-lsp`:\n\n```toml\n# Helix languages.toml file\n[[language]]\n name = \"python\"\n scope = \"source.python\"\n injection-regex = \"python\"\n file-types = [\"py\", \"pyi\"]\n shebangs = [\"python\"]\n roots = [\"pyproject.toml\", \"setup.py\", \"Poetry.lock\"]\n comment-token = \"#\"\n language-server = { command = \"multi-lsp-proxy\", args = [\"--config\", \"/path/to/multi-lsp-config.toml\"] }\n auto-format = false\n indent = { tab-width = 4, unit = \"    \" }\n config = {}\n```\n\nand configure multi-lsp-proxy in `multi-lsp-proxy.toml`\n\n```toml\nlog-file = \"/tmp/multi-lsp-proxy.log\"\n\n[[language]]\nname = \"python\"\ncommand = \"pyright-langserver\"\nargs = [\"--stdio\"]\n\n[[language]]\nname = \"python\"\ncommand = \"ruff-lsp\"\n```\n\n## License\n\nThis work is released under the MIT license. A copy of the license is provided in the [LICENSE](./LICENSE) file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmessense%2Fmulti-lsp-proxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmessense%2Fmulti-lsp-proxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmessense%2Fmulti-lsp-proxy/lists"}