-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.template
More file actions
27 lines (21 loc) · 1 KB
/
Copy path.env.template
File metadata and controls
27 lines (21 loc) · 1 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
# MetricFlow MCP Server Configuration Template
# Path to your dbt project directory (required)
DBT_PROJECT_DIR=/path/to/your/dbt/project
# Path to the dbt profiles directory (optional, defaults to ~/.dbt)
DBT_PROFILES_DIR=~/.dbt
# Path to the MetricFlow executable (optional, defaults to 'mf')
MF_PATH=mf
# Path to temporary directory for query results (optional, defaults to /tmp)
MF_TMP_DIR=/tmp
# SSE Server Configuration (only needed for SSE mode)
# Host to bind to for SSE mode (optional, defaults to '0.0.0.0')
MCP_HOST=0.0.0.0
# Port to bind to for SSE mode (optional, defaults to 8000)
MCP_PORT=8000
# API Key Authentication Configuration (for SSE mode)
# Whether to require API key authentication (true/false, defaults to false)
MCP_REQUIRE_AUTH=false
# API key for authentication (required if MCP_REQUIRE_AUTH=true)
# Must be at least 32 characters long and contain only alphanumeric characters, hyphens, or underscores
# Generate with: python -c "import secrets; print(secrets.token_urlsafe(32))"
MCP_API_KEY=