[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "zotero-mcp"
version = "0.1.0"
authors = [
{ name = "54yyyu", email = "54yyyu@github.com" },
{ name = "Thomas Spielauer", email="pypipackages01@tspi.at" }
]
description = "A Model Context Protocol server for Zotero"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pyzotero>=1.5.0",
"mcp>=1.2.0",
"python-dotenv>=1.0.0",
"markitdown[pdf]",
"pydantic>=2.0.0",
"requests>=2.28.0",
"fastmcp>=2.3.0",
"psycopg2>=2.9.0",
"pgvector>=0.2.0",
"ollama>=0.1.0",
"openai>=1.0.0",
"google-genai>=0.7.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"isort>=5.12.0",
]
[project.urls]
"Homepage" = "https://github.com/tspspi/zotero-mcp-postgres-ollama-fulltext"
[project.scripts]
zotero-mcp = "zotero_mcp.cli:main"
[tool.black]
line-length = 88
target-version = ["py310"]
[tool.isort]
profile = "black"