catenary-mcp 1.6.1

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
# Markdown

## Install

### macOS

```bash
brew install marksman
```

### Linux

Download the latest binary from
[GitHub releases](https://github.com/artempyanykh/marksman/releases):

```bash
# Example for x86_64
curl -L https://github.com/artempyanykh/marksman/releases/latest/download/marksman-linux-x64 -o marksman
chmod +x marksman
sudo mv marksman /usr/local/bin/
```

### Windows

```powershell
# With Chocolatey
choco install marksman

# Or download from GitHub releases
# https://github.com/artempyanykh/marksman/releases
```

## Config

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

```toml
[server.marksman]
command = "marksman"
args = ["server"]

[language.markdown]
servers = ["marksman"]
```

## Notes

- Marksman provides document symbols (headings), go-to-definition for
  wiki-links, and references
- Works well with `codebase_map` to show document structure
- Supports wiki-style `[[links]]` and standard `[links](url)`

## Links

- [Marksman GitHub]https://github.com/artempyanykh/marksman