-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
47 lines (34 loc) · 1.31 KB
/
.env.example
File metadata and controls
47 lines (34 loc) · 1.31 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
# ===========================================
# Arcane MCP Server Configuration
# ===========================================
# Server URL (required)
ARCANE_BASE_URL=https://arcane.example.com:3552
# Authentication - Choose ONE method:
# Method 1: API Key (recommended for MCP servers)
ARCANE_API_KEY=your-api-key-here
# Method 2: Username/Password (uses JWT with auto-refresh)
# ARCANE_USERNAME=admin
# ARCANE_PASSWORD=your-password
# ===========================================
# Optional Settings
# ===========================================
# Request timeout in milliseconds (default: 30000)
ARCANE_TIMEOUT_MS=30000
# Skip SSL certificate verification (default: false)
# Only use for development with self-signed certs
ARCANE_SKIP_SSL_VERIFY=false
# Default environment ID (optional)
# If set, tools will use this as default when environmentId is not provided
ARCANE_DEFAULT_ENVIRONMENT_ID=
# ===========================================
# TCP/HTTP Server Settings (for --tcp mode)
# ===========================================
# Port for HTTP server (default: 3000)
ARCANE_HTTP_PORT=3000
# Host to bind to (default: localhost)
ARCANE_HTTP_HOST=localhost
# ===========================================
# Logging
# ===========================================
# Log level: debug, info, warn, error (default: info)
LOG_LEVEL=info