-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.bat
More file actions
41 lines (37 loc) · 980 Bytes
/
setup.bat
File metadata and controls
41 lines (37 loc) · 980 Bytes
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
@echo off
echo ========================================
echo Microsoft Fabric MCP Server Setup
echo ========================================
echo.
REM Check if .env exists
if not exist .env (
if exist .env.example (
echo Creating .env from .env.example...
copy .env.example .env
echo.
echo IMPORTANT: Edit .env with your Azure credentials:
echo - AZURE_TENANT_ID
echo - AZURE_CLIENT_ID
echo - AZURE_CLIENT_SECRET
echo - POWERBI_WORKSPACE_ID (optional)
echo.
)
)
echo Installing dependencies...
call npm install
echo.
echo Building TypeScript...
call npm run build
echo.
echo ========================================
echo Setup Complete!
echo ========================================
echo.
echo Next steps:
echo 1. Edit .env with your Azure credentials
echo 2. Add to Claude Desktop config
echo 3. Restart Claude Desktop
echo.
echo See README.md for detailed instructions.
echo.
pause