-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
20 lines (16 loc) · 981 Bytes
/
.env.example
File metadata and controls
20 lines (16 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# MCP Dataverse Configuration
# Set these environment variables (or use config.json for local dev)
# Required: your Dataverse / Power Platform environment URL
DATAVERSE_ENV_URL=https://yourorg.crm.dynamics.com
# Optional: path to a config.json file (overrides DATAVERSE_ENV_URL)
# MCP_CONFIG_PATH=/home/you/.mcp-dataverse/config.json
# Tuning (optional)
# REQUEST_TIMEOUT_MS=30000
# MAX_RETRIES=3
# ── Authentication ────────────────────────────────────────────────────────────
# No credentials are required here.
# Authentication uses the Microsoft Device Code Flow (MSAL):
# 1. Run: npx mcp-dataverse install (or npx mcp-dataverse-auth)
# 2. Open the URL shown in the terminal and enter the displayed code
# 3. Sign in with your Microsoft / Power Platform account
# The token is cached in ~/.mcp-dataverse/msal-cache.json and reused silently.