You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+96-30Lines changed: 96 additions & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,58 +7,124 @@ An MCP (Model Context Protocol) server for indexing and querying codebases using
7
7
-**Semantic Code Search**: Find relevant code using natural language queries
8
8
-**Incremental Indexing**: Only re-indexes changed files for fast updates
9
9
-**Multi-Language Support**: Python, JavaScript/TypeScript, Rust, Go
10
-
-**Vector Embeddings**: Uses sentence-transformers for semantic similarity
10
+
-**Flexible Embeddings**: Local SentenceTransformers (default) or 100+ cloud providers via [LiteLLM](https://docs.litellm.ai/docs/embedding/supported_embedding)
11
11
-**SQLite Storage**: Portable, no external database required
12
12
13
-
## Installation
13
+
## Usage with Claude Code
14
+
15
+
No installation needed — `uvx` runs it directly.
16
+
17
+
### Default (Local Embeddings)
18
+
19
+
Uses a local SentenceTransformers model (`sentence-transformers/all-MiniLM-L6-v2`). No API key required:
14
20
15
21
```bash
16
-
pip install cocoindex-code
22
+
claude mcp add cocoindex-code -- uvx cocoindex-code
0 commit comments