graphiti/mcp_server/pyproject.toml
Daniel Chalef 713d548c9f fix: Critical fixes for MCP server functionality
- Fix async context manager in graph_data_operations.py clear_data function
- Correct import paths for Gemini and Voyage embedders in factories.py
- Move LLM provider dependencies to optional-dependencies section
- Add sentence-transformers as optional dependency for local embeddings
- Update README with optional dependency installation instructions

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-30 08:50:48 -07:00

29 lines
553 B
TOML

[project]
name = "mcp-server"
version = "0.4.0"
description = "Graphiti MCP Server"
readme = "README.md"
requires-python = ">=3.10,<4"
dependencies = [
"mcp>=1.9.4",
"openai>=1.91.0",
"graphiti-core>=0.16.0",
"azure-identity>=1.21.0",
"pydantic-settings>=2.0.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
providers = [
"google-genai>=1.8.0",
"anthropic>=0.49.0",
"groq>=0.2.0",
"voyageai>=0.2.3",
"sentence-transformers>=2.0.0",
]
[dependency-groups]
dev = [
"httpx>=0.28.1",
"mcp>=1.9.4",
]