Skip to content

Commit f8ecab2

Browse files
Merge pull request #13 from qdrant/chore/pre-commit
Add pre-commit to ensure consistent formatting
2 parents 7c1d05a + e673084 commit f8ecab2

File tree

8 files changed

+149
-20
lines changed

8 files changed

+149
-20
lines changed

.github/workflows/pre-commit.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: pre-commit
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [main]
7+
8+
jobs:
9+
pre-commit:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- uses: actions/setup-python@v3
14+
- uses: pre-commit/[email protected]

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,4 +159,4 @@ cython_debug/
159159
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
160160
# and can be added to the global gitignore or merged into this file. For a more nuclear
161161
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
162-
#.idea/
162+
#.idea/

.pre-commit-config.yaml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# See https://pre-commit.com for more information
2+
# See https://pre-commit.com/hooks.html for more hooks
3+
default_language_version:
4+
python: python3.10
5+
6+
ci:
7+
autofix_prs: true
8+
autoupdate_commit_msg: '[pre-commit.ci] pre-commit suggestions'
9+
autoupdate_schedule: quarterly
10+
# submodules: true
11+
12+
repos:
13+
- repo: https://github.com/pre-commit/pre-commit-hooks
14+
rev: v4.6.0
15+
hooks:
16+
- id: check-yaml
17+
- id: end-of-file-fixer
18+
- id: trailing-whitespace
19+
- id: check-ast
20+
- id: check-added-large-files
21+
22+
- repo: https://github.com/astral-sh/ruff-pre-commit
23+
rev: v0.5.0
24+
hooks:
25+
- id: ruff
26+
args: [ --fix ]
27+
- id: ruff-format
28+
29+
- repo: https://github.com/PyCQA/isort
30+
rev: 5.12.0
31+
hooks:
32+
- id: isort
33+
name: "Sort Imports"
34+
args: [ "--profile", "black" ]

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ To use this server with the Claude Desktop app, add the following configuration
5656
"qdrant": {
5757
"command": "uvx",
5858
"args": [
59-
"mcp-server-qdrant",
60-
"--qdrant-url",
59+
"mcp-server-qdrant",
60+
"--qdrant-url",
6161
"http://localhost:6333",
62-
"--qdrant-api-key",
62+
"--qdrant-api-key",
6363
"your_api_key",
6464
"--collection-name",
6565
"your_collection_name"
@@ -68,8 +68,8 @@ To use this server with the Claude Desktop app, add the following configuration
6868
}
6969
```
7070

71-
Replace `http://localhost:6333`, `your_api_key` and `your_collection_name` with your Qdrant server URL, Qdrant API key
72-
and collection name, respectively. The use of API key is optional, but recommended for security reasons, and depends on
71+
Replace `http://localhost:6333`, `your_api_key` and `your_collection_name` with your Qdrant server URL, Qdrant API key
72+
and collection name, respectively. The use of API key is optional, but recommended for security reasons, and depends on
7373
the Qdrant server configuration.
7474

7575
This MCP server will automatically create a collection with the specified name if it doesn't exist.
@@ -87,7 +87,7 @@ To use a local mode of Qdrant, you can specify the path to the database using th
8787
"qdrant": {
8888
"command": "uvx",
8989
"args": [
90-
"mcp-server-qdrant",
90+
"mcp-server-qdrant",
9191
"--qdrant-local-path",
9292
"/path/to/qdrant/database",
9393
"--collection-name",
@@ -113,6 +113,6 @@ You cannot provide `QDRANT_URL` and `QDRANT_LOCAL_PATH` at the same time.
113113

114114
## License
115115

116-
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software,
117-
subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project
116+
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software,
117+
subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project
118118
repository.

pyproject.toml

+6-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@ requires = ["hatchling"]
1414
build-backend = "hatchling.build"
1515

1616
[tool.uv]
17-
dev-dependencies = ["pyright>=1.1.389", "pytest>=8.3.3", "ruff>=0.8.0"]
17+
dev-dependencies = [
18+
"pre-commit>=4.1.0",
19+
"pyright>=1.1.389",
20+
"pytest>=8.3.3",
21+
"ruff>=0.8.0",
22+
]
1823

1924
[project.scripts]
2025
mcp-server-qdrant = "mcp_server_qdrant:main"

src/mcp_server_qdrant/qdrant.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from typing import Optional
2-
from qdrant_client import AsyncQdrantClient, models
2+
3+
from qdrant_client import AsyncQdrantClient
34

45

56
class QdrantConnector:
@@ -27,7 +28,9 @@ def __init__(
2728
# For the time being, FastEmbed models are the only supported ones.
2829
# A list of all available models can be found here:
2930
# https://qdrant.github.io/fastembed/examples/Supported_Models/
30-
self._client = AsyncQdrantClient(location=qdrant_url, api_key=qdrant_api_key, path=qdrant_local_path)
31+
self._client = AsyncQdrantClient(
32+
location=qdrant_url, api_key=qdrant_api_key, path=qdrant_local_path
33+
)
3134
self._client.set_model(fastembed_model_name)
3235

3336
async def store_memory(self, information: str):

src/mcp_server_qdrant/server.py

+12-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1+
import asyncio
12
from typing import Optional
23

3-
from mcp.server import Server, NotificationOptions
4-
from mcp.server.models import InitializationOptions
5-
64
import click
7-
import mcp.types as types
8-
import asyncio
95
import mcp
6+
import mcp.types as types
7+
from mcp.server import NotificationOptions, Server
8+
from mcp.server.models import InitializationOptions
109

1110
from .qdrant import QdrantConnector
1211

@@ -29,7 +28,11 @@ def serve(
2928
server = Server("qdrant")
3029

3130
qdrant = QdrantConnector(
32-
qdrant_url, qdrant_api_key, collection_name, fastembed_model_name, qdrant_local_path
31+
qdrant_url,
32+
qdrant_api_key,
33+
collection_name,
34+
fastembed_model_name,
35+
qdrant_local_path,
3336
)
3437

3538
@server.list_tools()
@@ -151,7 +154,9 @@ def main(
151154
):
152155
# XOR of url and local path, since we accept only one of them
153156
if not (bool(qdrant_url) ^ bool(qdrant_local_path)):
154-
raise ValueError("Exactly one of qdrant-url or qdrant-local-path must be provided")
157+
raise ValueError(
158+
"Exactly one of qdrant-url or qdrant-local-path must be provided"
159+
)
155160

156161
async def _run():
157162
async with mcp.server.stdio.stdio_server() as (read_stream, write_stream):

uv.lock

+69-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)