mcpls 0.3.0

Universal MCP to LSP bridge CLI - expose Language Server Protocol capabilities as MCP tools
# mcpls

[![Crates.io](https://img.shields.io/crates/v/mcpls)](https://crates.io/crates/mcpls)
[![License](https://img.shields.io/badge/license-MIT%2FApache--2.0-blue)](../../LICENSE-MIT)

**Give your AI agent a compiler's eye.**

The mcpls CLI exposes language server intelligence through MCP. One binary, any language, zero runtime dependencies.

## Installation

```bash
cargo install mcpls
```

## Usage

```bash
mcpls                           # Run with defaults
mcpls --log-level debug         # Verbose output
mcpls --config ./mcpls.toml     # Custom config
```

## Options

| Flag | Description |
|------|-------------|
| `-c, --config <PATH>` | Configuration file path |
| `-l, --log-level <LEVEL>` | trace, debug, info, warn, error |
| `--log-json` | JSON-formatted logs for tooling |

## Integration

Add to Claude Code (`~/.claude/claude_desktop_config.json`):

```json
{
  "mcpServers": {
    "mcpls": { "command": "mcpls", "args": [] }
  }
}
```

See the main [README](../../README.md) for full documentation.

## License

Dual-licensed under [Apache 2.0](../../LICENSE-APACHE) or [MIT](../../LICENSE-MIT).