Skip to content

Commit 2e871a4

Browse files
Add example of using local mode in README
1 parent 64ad4e6 commit 2e871a4

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

README.md

+22-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,28 @@ By default, the server will use the `sentence-transformers/all-MiniLM-L6-v2` emb
7878
For the time being, only [FastEmbed](https://qdrant.github.io/fastembed/) models are supported, and you can change it
7979
by passing the `--fastembed-model-name` argument to the server.
8080

81-
### Environment Variables
81+
### Using a local Qdrant database
82+
83+
To use a local mode of Qdrant, you can specify the path to the database using the `--qdrant-local-path` argument:
84+
85+
```json
86+
{
87+
"qdrant": {
88+
"command": "uvx",
89+
"args": [
90+
"mcp-server-qdrant",
91+
"--qdrant-local-path",
92+
"/path/to/qdrant/database",
93+
"--collection-name",
94+
"your_collection_name"
95+
]
96+
}
97+
}
98+
```
99+
100+
It will run Qdrant local mode inside the same process as the MCP server. Although it is not recommended for production.
101+
102+
## Environment Variables
82103

83104
The configuration of the server can be also done using environment variables:
84105

0 commit comments

Comments
 (0)