* Allow passing the collection name in each request to override the default * Allow getting the collection names in QdrantConnector * get vector size from model description * ruff format * add isort * apply pre-commit hooks --------- Co-authored-by: generall <andrey@vasnetsov.com>
37 lines
768 B
TOML
37 lines
768 B
TOML
[project]
|
|
name = "mcp-server-qdrant"
|
|
version = "0.7.1"
|
|
description = "MCP server for retrieving context from a Qdrant vector database"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = "Apache-2.0"
|
|
dependencies = [
|
|
"mcp[cli]>=1.3.0",
|
|
"fastembed>=0.6.0",
|
|
"qdrant-client>=1.12.0",
|
|
"pydantic>=2.10.6",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"isort>=6.0.1",
|
|
"pre-commit>=4.1.0",
|
|
"pyright>=1.1.389",
|
|
"pytest>=8.3.3",
|
|
"pytest-asyncio>=0.23.0",
|
|
"ruff>=0.8.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
mcp-server-qdrant = "mcp_server_qdrant.main:main"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
python_files = "test_*.py"
|
|
python_functions = "test_*"
|
|
asyncio_mode = "auto"
|