-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
47 lines (35 loc) · 1.16 KB
/
.env.example
File metadata and controls
47 lines (35 loc) · 1.16 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
# Langflow MCP Server Configuration
# ====================
# LANGFLOW API CONFIGURATION
# ====================
# Langflow instance base URL (without /api/v1 suffix)
# Example: http://localhost:7860 or https://your-langflow-instance.com
LANGFLOW_BASE_URL=http://localhost:7860
# Langflow API Key
# Get this from your Langflow instance settings
LANGFLOW_API_KEY=your-api-key-here
# API request timeout in milliseconds (default: 30000)
LANGFLOW_TIMEOUT=30000
# ====================
# MCP SERVER CONFIGURATION
# ====================
# Server mode: stdio (local) or http (remote)
MCP_MODE=stdio
# Logging Level (debug, info, warn, error)
LOG_LEVEL=info
# Node Environment (development, production)
NODE_ENV=development
# Enable deprecated tools (true/false)
# Set to false to hide deprecated tools from the tool list
# Deprecated tools are marked with ⚠️ in their descriptions
ENABLE_DEPRECATED_TOOLS=true
# ====================
# HTTP MODE CONFIGURATION
# ====================
# Only used when MCP_MODE=http
# HTTP Server Configuration
PORT=3000
HOST=0.0.0.0
# Authentication token for HTTP mode
# Generate with: openssl rand -base64 32
AUTH_TOKEN=your-secure-token-here