Some checks failed
Test Dashboard / test-and-dashboard (push) Has been cancelled
- Add Dockerfile with multi-stage build using uv - Add docker-compose.yml with caddy-docker-proxy labels for /mcp endpoint - Add .env.example for deployment configuration - Update Makefile with docker-* targets - Update server.py to support MCP_TRANSPORT env var: - 'stdio' (default): Local CLI usage with Claude Code - 'streamable-http': Hosted HTTP mode behind reverse proxy Hosted server will be available at: https://mcwaddams.supported.systems/mcp
19 lines
473 B
Plaintext
19 lines
473 B
Plaintext
# mcwaddams MCP Server - Environment Configuration
|
|
# Copy to .env and customize
|
|
|
|
# Docker Compose project name (prevents container name conflicts)
|
|
COMPOSE_PROJECT_NAME=mcwaddams
|
|
|
|
# Hostname for caddy-docker-proxy
|
|
MCWADDAMS_HOST=mcwaddams.supported.systems
|
|
|
|
# Debug mode (enables verbose logging)
|
|
DEBUG=false
|
|
|
|
# Transport mode: stdio (local), streamable-http (hosted)
|
|
MCP_TRANSPORT=streamable-http
|
|
|
|
# Server binding (for streamable-http mode)
|
|
MCP_HOST=0.0.0.0
|
|
MCP_PORT=8000
|