summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml8
1 files changed, 8 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index d09d09a..e0340ed 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -14,3 +14,11 @@ dependencies = [
# No [build-system]: this is an application, not an installable package, so uv
# treats it as a virtual project and won't try to build/install it.
+
+# Optional deps for the MCP "ai service" (deploy with `uv sync --group mcp`).
+# Kept out of the default set so the Django service stays lean.
+[dependency-groups]
+mcp = [
+ "fastmcp>=2",
+ "httpx>=0.27",
+]