codelens-mcp 1.8.0

Pure Rust MCP server for code intelligence — 89 tools (+6 semantic), 25 languages, tree-sitter-first, 50-87% fewer tokens
# codelens-mcp

MCP server binary for [CodeLens](https://github.com/mupozg823/codelens-mcp-plugin) — compressed context and verification tools for AI coding agents.

Built on [codelens-engine](https://crates.io/crates/codelens-engine). Exposes 89+ tools via JSON-RPC (stdio) or HTTP, with role-based tool surfaces and adaptive token compression.

## Quick Start

```bash
# Install
cargo install codelens-mcp

# Run (stdio mode for MCP clients)
codelens-mcp

# Or with HTTP transport
codelens-mcp --http 8080
```

### Claude Code / Cursor

```json
{
  "mcpServers": {
    "codelens": {
      "command": "codelens-mcp",
      "args": []
    }
  }
}
```

## Features

- **89 tools** with preset-based surfaces (Full/Balanced/Minimal)
- **Workflow tools**`analyze_change_request`, `impact_report`, `safe_rename_report`
- **Adaptive compression** — 5-stage token budget management
- **Analysis jobs** — async durable handles for heavy analyses
- **Mutation gate** — preflight verification before code changes
- **25 languages** via tree-sitter

## Feature Flags

| Feature    | Default | Description                     |
| ---------- | ------- | ------------------------------- |
| `semantic` | yes     | Embedding-based semantic search |
| `http`     | no      | HTTP/SSE transport via axum     |

## License

Apache-2.0