-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.env.example
More file actions
36 lines (27 loc) · 1.11 KB
/
.env.example
File metadata and controls
36 lines (27 loc) · 1.11 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
# RHOAI MCP Server Configuration
# Copy this file to .env and configure as needed
# Authentication mode: auto | kubeconfig | token
# - auto: Try in-cluster first, fall back to kubeconfig
# - kubeconfig: Use kubeconfig file
# - token: Use explicit API server URL and token
RHOAI_MCP_AUTH_MODE=auto
# Kubeconfig settings (used when AUTH_MODE=kubeconfig or auto)
# RHOAI_MCP_KUBECONFIG_PATH=/path/to/kubeconfig
# RHOAI_MCP_KUBECONFIG_CONTEXT=my-context
# Token auth settings (used when AUTH_MODE=token)
# RHOAI_MCP_API_SERVER=https://api.cluster.example.com:6443
# RHOAI_MCP_API_TOKEN=sha256~xxxxx
# Default namespace for operations (optional)
# RHOAI_MCP_DEFAULT_NAMESPACE=my-project
# Transport mode: stdio | sse | streamable-http
RHOAI_MCP_TRANSPORT=stdio
# Server settings for HTTP transports
RHOAI_MCP_HOST=127.0.0.1
RHOAI_MCP_PORT=8000
# Safety settings
# Enable dangerous operations like delete (default: false)
RHOAI_MCP_ENABLE_DANGEROUS_OPERATIONS=false
# Read-only mode - disable all write operations (default: false)
RHOAI_MCP_READ_ONLY_MODE=false
# Logging level: DEBUG | INFO | WARNING | ERROR
RHOAI_MCP_LOG_LEVEL=INFO