-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
41 lines (30 loc) · 1.24 KB
/
Copy pathenv.example
File metadata and controls
41 lines (30 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Environment variables for docker-compose
# Copy this to .env and customize as needed
# Note: .env is git-ignored, so your local settings won't be committed
# Transport mode: "stdio" or "streamable-http"
# Use "streamable-http" for HTTP endpoint mode (compatible with mcp-remote)
# Use "stdio" for command-line usage
# MCP_TRANSPORT=streamable-http
# Host binding (0.0.0.0 = all interfaces)
# MCP_HOST=0.0.0.0
# Port inside container
# MCP_PORT=8008
# Host port to map to container port
# MCP_HOST_PORT=8008
# HTTP endpoint path
# MCP_PATH=/mcp
# Allowed hosts (comma-separated)
# Include port numbers if your Host headers include them
# MCP_ALLOWED_HOSTS=localhost,localhost:8008,host.docker.internal,host.docker.internal:8008
# Set to "true" to disable DNS rebinding protection entirely (allows all hosts)
# MCP_DISABLE_DNS_REBINDING_PROTECTION=false
# Disable healthcheck (set to "true" to disable, useful for stdio mode)
# DISABLE_HEALTHCHECK=false
# Base directory for plot output files
# Default: /outputs/
# MCP_OUTPUT_DIR=/outputs/
# Output volume mount path (relative to docker-compose.yml or absolute path)
# Default: ./outputs (bind mount to local directory)
# MCP_OUTPUT_VOLUME=./outputs
# Or use a named volume:
# MCP_OUTPUT_VOLUME=math-mcp-outputs