-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.docker.example
More file actions
50 lines (36 loc) · 1.73 KB
/
.env.docker.example
File metadata and controls
50 lines (36 loc) · 1.73 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
42
43
44
45
46
47
48
49
50
# Docker Compose Environment Configuration
# Copy this file to .env in the root directory for docker-compose to use
# ============================================================================
# Bridge Server Authentication
# ============================================================================
# Comma-separated list of valid authentication tokens for MCP Server connections
# Generate strong random tokens for production
MCP_AUTH_TOKENS=mcp-token-1,mcp-token-2
# Authentication token for Minecraft Mod connections
# Must match the auth_token in minecraft-mcp-bridge.toml
MINECRAFT_AUTH_TOKEN=minecraft-token-here
# ============================================================================
# MCP Server Configuration
# ============================================================================
# Authentication token for MCP Server to connect to Bridge Server
# Must be one of the tokens in MCP_AUTH_TOKENS
MCP_AUTH_TOKEN=mcp-token-1
# ============================================================================
# Optional Configuration
# ============================================================================
# Message queue size (default: 1000)
# MESSAGE_QUEUE_SIZE=1000
# Heartbeat interval in milliseconds (default: 30000)
# HEARTBEAT_INTERVAL=30000
# Bridge Server log level: debug, info, warn, error (default: info)
# LOG_LEVEL=info
# MCP Server log level: TRACE, DEBUG, INFO, WARN, ERROR (default: INFO)
# MCP_LOG_LEVEL=INFO
# Reconnection attempts for MCP Server (default: 5)
# RECONNECT_ATTEMPTS=5
# Reconnection delay in milliseconds (default: 1000)
# RECONNECT_DELAY=1000
# MCP Server name (default: minecraft-mcp-server)
# MCP_SERVER_NAME=minecraft-mcp-server
# MCP Server version (default: 1.0.0)
# MCP_SERVER_VERSION=1.0.0