706a15f0bc
ADR-016: For container runtime deployment, Smithery does not auto-generate the .well-known/mcp-config endpoint like it does for Python CLI runtime. Changes: - Remove [tool.smithery] from pyproject.toml (not used in container mode) - Remove smithery_server.py (Python CLI runtime specific) - Add .well-known/mcp-config endpoint to return JSON Schema config - Add SmitheryConfigMiddleware to extract config from URL query params - Use ContextVar to pass session config to tool handlers The container runtime passes config as URL query parameters to /mcp: GET /mcp?nextcloud_url=...&username=...&app_password=... Tested: - All 164 unit tests passing - Docker container builds successfully - .well-known/mcp-config returns valid JSON Schema - Health endpoints working 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
45 lines
1.4 KiB
Docker
45 lines
1.4 KiB
Docker
# Dockerfile for Smithery stateless deployment
|
|
# ADR-016: Stateless mode for multi-user public Nextcloud instances
|
|
#
|
|
# This image excludes:
|
|
# - Vector database dependencies (qdrant-client)
|
|
# - Background sync workers
|
|
# - Admin UI routes (/app)
|
|
# - Semantic search tools
|
|
#
|
|
# Features included:
|
|
# - Core Nextcloud tools (notes, calendar, contacts, files, deck, tables, cookbook)
|
|
# - Per-session app password authentication
|
|
# - Multi-user support via Smithery session config
|
|
|
|
FROM docker.io/library/python:3.12-slim-trixie@sha256:2e683fc3e18a248aa23b8022f2a3474b072b04fb851efe9b49f6b516a8944939
|
|
|
|
WORKDIR /app
|
|
|
|
# Install uv for fast dependency management
|
|
COPY --from=ghcr.io/astral-sh/uv:0.9.10@sha256:29bd45092ea8902c0bbb7f0a338f0494a382b1f4b18355df5be270ade679ff1d /uv /uvx /bin/
|
|
|
|
# Install dependencies
|
|
# 1. git (required for caldav dependency from git)
|
|
# 2. sqlite for development with token db
|
|
RUN apt update && apt install --no-install-recommends --no-install-suggests -y \
|
|
git
|
|
|
|
# Copy project files
|
|
COPY . .
|
|
|
|
RUN uv sync --locked --no-dev --no-editable --no-cache
|
|
|
|
# Set Smithery mode environment variables
|
|
ENV SMITHERY_DEPLOYMENT=true
|
|
ENV VECTOR_SYNC_ENABLED=false
|
|
|
|
# Smithery sets PORT=8081 by default
|
|
EXPOSE 8081
|
|
|
|
# Health check endpoint
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
|
|
CMD uv run python -c "import httpx; httpx.get('http://localhost:${PORT:-8081}/health/live').raise_for_status()"
|
|
|
|
CMD ["/app/.venv/bin/smithery-main"]
|