-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[project]
name = "mcp-neo4j-vectordb"
version = "0.1.0"
description = "Neo4j MCP server that mimics a pure vector database for RAG comparison: vector search, fulltext search, no graph traversal"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Jean-Marc Guerin"}
]
keywords = ["neo4j", "vector-database", "mcp", "vector-search", "rag", "llm"]
requires-python = ">=3.10"
dependencies = [
"fastmcp>=2.14.2,<3.0.0",
"neo4j>=5.26.0",
"pydantic>=2.10.1",
"tiktoken>=0.11.0",
"litellm>=1.50.0,!=1.82.7,!=1.82.8",
]
[project.urls]
Homepage = "https://github.com/guerinjeanmarc/mcp-neo4j-vectordb"
Repository = "https://github.com/guerinjeanmarc/mcp-neo4j-vectordb"
Issues = "https://github.com/guerinjeanmarc/mcp-neo4j-vectordb/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pyright>=1.1.389",
"pytest>=7.0.0",
"pytest-asyncio>=0.20.3",
"ruff>=0.11.5",
]
[project.scripts]
mcp-neo4j-vectordb = "mcp_neo4j_vectordb:main"