Initial commit: Character Details MCP Server

This commit is contained in:
Aodhan Collins
2026-03-06 19:23:05 +00:00
commit f330fe8eb3
13 changed files with 1028 additions and 0 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM python:3.12-slim
WORKDIR /app
# Copy project definition first (layer-cached separately from source)
COPY pyproject.toml ./
COPY src/ src/
# All dependencies have pre-built wheels — no compiler needed
RUN pip install --no-cache-dir -e .
# Cache lives here — mount a named volume to persist across container runs
VOLUME ["/root/.local/share/character_details"]
# MCP servers communicate over stdio; no port needed
CMD ["character-details"]