catenary-mcp 0.6.3

A high-performance multiplexing bridge between MCP (Model Context Protocol) and LSP (Language Server Protocol). Enables LLMs to access IDE-grade code intelligence across multiple languages simultaneously with smart routing and UTF-8 accuracy.
Documentation
# Language Servers

Setup guides for individual language servers. Each page covers installation and
Catenary configuration.

## Languages

| Language(s)        | Page                               | Server                       |
| ------------------ | ---------------------------------- | ---------------------------- |
| CSS, HTML, JSON    | [CSS-HTML-JSON]css-html-json.md  | vscode-langservers-extracted |
| Go                 | [Go]go.md                        | gopls                        |
| JavaScript         | [JavaScript]javascript.md        | typescript-language-server   |
| Julia              | [Julia]julia.md                  | LanguageServer.jl            |
| Markdown           | [Markdown]markdown.md            | marksman                     |
| PHP                | [PHP]php.md                      | intelephense                 |
| Python             | [Python]python.md                | pyright                      |
| Rust               | [Rust]rust.md                    | rust-analyzer                |
| Shell (Bash)       | [Shell]shell.md                  | bash-language-server         |
| Termux & Packaging | [Termux]termux.md                | termux-language-server       |
| TypeScript         | [TypeScript]typescript.md        | typescript-language-server   |

## Contributing

Want to add a language?

1. Create `your-language.md` in the `lsp/` folder following the template below
2. Add a row to the table above
3. Submit a PR

### Template

````markdown
# YourLanguage

## Install

### macOS

```bash
# install command
```

### Linux

```bash
# install command
```

### Windows

```bash
# install command
```

## Config

Add to `~/.config/catenary/config.toml`:

```toml
[server.yourlanguage]
command = "your-language-server"
args = ["--stdio"]
```

## Notes

Any gotchas, tips, or links to official docs.
````