directory-indexer 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,7 +34,18 @@ docker run -d --name ollama -p 127.0.0.1:11434:11434 -v ollama:/root/.ollama oll
|
|
|
34
34
|
# Pull the embedding model
|
|
35
35
|
docker exec ollama ollama pull nomic-embed-text
|
|
36
36
|
```
|
|
37
|
-
|
|
37
|
+
|
|
38
|
+
**Note:** Make sure the embedding model is pulled before you start indexing.
|
|
39
|
+
|
|
40
|
+
You can confirm that Ollama and Qdrant are running by checking:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
# qdrant endpoint
|
|
44
|
+
curl http://localhost:6333/
|
|
45
|
+
|
|
46
|
+
# confirm what ollama models are available
|
|
47
|
+
curl http://localhost:11434/api/tags
|
|
48
|
+
```
|
|
38
49
|
|
|
39
50
|
**3. Index your directories**
|
|
40
51
|
|
|
@@ -58,11 +69,13 @@ Add to your MCP configuration:
|
|
|
58
69
|
```
|
|
59
70
|
|
|
60
71
|
If you experience issues on windows adding this MCP. You can install the package globally using
|
|
72
|
+
|
|
61
73
|
```
|
|
62
74
|
npm install -g directory-indexer@latest
|
|
63
75
|
```
|
|
64
76
|
|
|
65
77
|
Then use the following MCP configuration
|
|
78
|
+
|
|
66
79
|
```
|
|
67
80
|
{
|
|
68
81
|
"mcpServers": {
|
|
@@ -238,6 +251,7 @@ Organize content into workspaces for focused searches:
|
|
|
238
251
|
```
|
|
239
252
|
|
|
240
253
|
**How workspaces work:**
|
|
254
|
+
|
|
241
255
|
- Define workspace environments with `WORKSPACE_NAME` format
|
|
242
256
|
- Use comma-separated paths or JSON arrays: `["path1", "path2"]`
|
|
243
257
|
- Search within specific workspaces: _"Find issues about authentication in customer cases workspace"_
|