# 🔥 LEANN Claude Code Integration Transform your development workflow with intelligent code assistance using LEANN's semantic search directly in Claude Code. ## Prerequisites Install LEANN globally for MCP integration (with default backend): ```bash uv tool install leann-core --with leann ``` This installs the `leann` CLI into an isolated tool environment and includes both backends so `leann build` works out-of-the-box. ## 🚀 Quick Setup Add the LEANN MCP server to Claude Code: ```bash claude mcp add leann-server -- leann_mcp ``` ## 🛠️ Available Tools Once connected, you'll have access to these powerful semantic search tools in Claude Code: - **`leann_list`** - List all available indexes across your projects - **`leann_search`** - Perform semantic searches across code and documents - **`leann_ask`** - Ask natural language questions and get AI-powered answers from your codebase ## 🎯 Quick Start Example ```bash # Build an index for your project (change to your actual path) leann build my-project --docs ./ # Start Claude Code claude ``` ## 🚀 Advanced Usage Examples ### Index Entire Git Repository ```bash # Index all tracked files in your git repository, note right now we will skip submodules, but we can add it back easily if you want leann build my-repo --docs $(git ls-files) --embedding-mode sentence-transformers --embedding-model all-MiniLM-L6-v2 --backend hnsw # Index only specific file types from git leann build my-python-code --docs $(git ls-files "*.py") --embedding-mode sentence-transformers --embedding-model all-MiniLM-L6-v2 --backend hnsw ``` ### Multiple Directories and Files ```bash # Index multiple directories leann build my-codebase --docs ./src ./tests ./docs ./config --embedding-mode sentence-transformers --embedding-model all-MiniLM-L6-v2 --backend hnsw # Mix files and directories leann build my-project --docs ./README.md ./src/ ./package.json ./docs/ --embedding-mode sentence-transformers --embedding-model all-MiniLM-L6-v2 --backend hnsw # Specific files only leann build my-configs --docs ./tsconfig.json ./package.json ./webpack.config.js --embedding-mode sentence-transformers --embedding-model all-MiniLM-L6-v2 --backend hnsw ``` ### Advanced Git Integration ```bash # Index recently modified files leann build recent-changes --docs $(git diff --name-only HEAD~10..HEAD) --embedding-mode sentence-transformers --embedding-model all-MiniLM-L6-v2 --backend hnsw # Index files matching pattern leann build frontend --docs $(git ls-files "*.tsx" "*.ts" "*.jsx" "*.js") --embedding-mode sentence-transformers --embedding-model all-MiniLM-L6-v2 --backend hnsw # Index documentation and config files leann build docs-and-configs --docs $(git ls-files "*.md" "*.yml" "*.yaml" "*.json" "*.toml") --embedding-mode sentence-transformers --embedding-model all-MiniLM-L6-v2 --backend hnsw ``` **Try this in Claude Code:** ``` Help me understand this codebase. List available indexes and search for authentication patterns. ```