-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy path.env.example
More file actions
38 lines (30 loc) · 1.19 KB
/
.env.example
File metadata and controls
38 lines (30 loc) · 1.19 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
# Opik API Configuration
# Copy this file to .env and fill in your actual values
# API Configuration
OPIK_API_BASE_URL="https://comet.com/opik/api" # For cloud version
# OPIK_API_BASE_URL="http://localhost:5173/api" # For self-hosted version
# Authentication
OPIK_API_KEY="your-api-key-here"
# Cloud-specific (can be omitted for self-hosted)
OPIK_WORKSPACE_NAME="your-workspace-name"
# Deployment type
OPIK_SELF_HOSTED="false" # Set to "true" for self-hosted
# Testing
# Set to "true" to enable verbose logging
DEBUG_MODE="false"
# Transport
TRANSPORT="stdio" # stdio or streamable-http
STREAMABLE_HTTP_PORT="3001"
STREAMABLE_HTTP_HOST="127.0.0.1"
STREAMABLE_HTTP_LOG_PATH="/tmp/opik-mcp-streamable-http.log"
# Remote streamable-http auth (recommended for self-hosted remote MCP)
STREAMABLE_HTTP_REQUIRE_AUTH="true"
STREAMABLE_HTTP_VALIDATE_REMOTE_AUTH="true"
STREAMABLE_HTTP_TRUST_WORKSPACE_HEADERS="false"
# JSON token -> workspace mapping for remote multi-tenant routing
# REMOTE_TOKEN_WORKSPACE_MAP='{"token-a":"workspace-a","token-b":"workspace-b"}'
STREAMABLE_HTTP_CORS_ORIGINS=""
STREAMABLE_HTTP_RATE_LIMIT_WINDOW_MS="60000"
STREAMABLE_HTTP_RATE_LIMIT_MAX="120"
# Toolsets (new model)
OPIK_TOOLSETS="core"