Back to the catalog

clojure-lsp

Clojure/ClojureScript language server for code intelligence

Open source Open in the app JSON README (API)

About

Clojure/ClojureScript language server for code intelligence

Details

Kind
Plugins
Topic
Developer tools
Publisher
jucor
Origin
marketplace
Category
ferramentas
Last push
2026-03-03T15:44:11Z
Repository state
ativo
License
Apache-2.0
Added
2026-08-30 01:48:58
Updated
2026-08-30 01:48:58
Origin id
jucor/clojure-lsp-plugin/clojure-lsp

README

# clojure-lsp plugin for Claude Code

Clojure/ClojureScript language server plugin for [Claude Code](https://claude.com/claude-code), providing code intelligence, navigation, and refactoring via [clojure-lsp](https://clojure-lsp.io/).

## Supported file types

| Extension | Language |
|-----------|----------|
| `.clj` | Clojure |
| `.cljs` | ClojureScript |
| `.cljc` | Clojure (common) |
| `.edn` | EDN |

## Prerequisites

Install the `clojure-lsp` binary before using this plugin.

**macOS (Homebrew):**
```bash
brew install clojure-lsp/brew/clojure-lsp-native
```

**Nix:**
```bash
nix-env -i clojure-lsp
```

**Other platforms:** download from the [clojure-lsp releases](https://github.com/clojure-lsp/clojure-lsp/releases).

## Installation

```bash
claude plugin install clojure-lsp
```

## LSP capabilities

Once installed, Claude Code gains access to these operations on Clojure files:

- `goToDefinition` — jump to where a symbol is defined
- `findReferences` — find all usages of a symbol
- `hover` — get documentation and type info
- `documentSymbol` — list all symbols in a file
- `workspaceSymbol` — search for symbols across the project
- `goToImplementation` — find implementations of a protocol/multimethod

## License

Apache 2.0

More