mcp-office-tools/.env.example
Ryan Malloy 322ed78427
Some checks failed
Test Dashboard / test-and-dashboard (push) Has been cancelled
Add Docker deployment with streamable-http transport for hosted MCP
- 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
2026-01-11 14:27:50 -07:00

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