-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (28 loc) · 1.18 KB
/
.env.example
File metadata and controls
39 lines (28 loc) · 1.18 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
# Ask-Intercom Configuration
# Copy this file to .env and fill in your API keys
# Required: Intercom API access token
# Get from: https://developers.intercom.com/building-apps/docs/authentication-types#how-to-get-your-access-token
INTERCOM_ACCESS_TOKEN=your_intercom_token_here
# Required: OpenAI API key
# Get from: https://platform.openai.com/api-keys
OPENAI_API_KEY=your_openai_key_here
# Optional: Intercom App ID (auto-fetched if not provided)
# INTERCOM_APP_ID=your_app_id_here
# Optional: OpenAI model (default: gpt-4)
OPENAI_MODEL=gpt-4
# Optional: Maximum conversations to analyze (default: no limit)
# MAX_CONVERSATIONS=100
# Optional: Debug mode - shows full error tracebacks (default: false)
# DEBUG=true
# Optional: Environment (default: development)
ENVIRONMENT=development
# MCP (Model Context Protocol) Configuration
# Enable MCP integration with Intercom's official MCP server
ENABLE_MCP=true
# MCP server endpoint (official Intercom MCP)
# MCP_SERVER_URL=https://mcp.intercom.com/sse
# MCP OAuth credentials (if required)
# MCP_OAUTH_CLIENT_ID=your_oauth_client_id
# MCP_OAUTH_CLIENT_SECRET=your_oauth_client_secret
# Optional: MCP timeout (default: 30 seconds)
# MCP_TIMEOUT=30