You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
az webapp deploy --src-path <path_to_zip_file> -n <app_name> -g <resource_group_name>
59
59
```
60
60
61
61
3. Set Azure SignalR Service connection string in the application settings. You can do it through portal or using Azure CLI:
@@ -85,21 +85,38 @@ To install the MCP server:
85
85
npm install
86
86
```
87
87
88
-
2. The MCP server will by default connect to local server (http://localhost:5000). If your whiteboard is not running locally, set the endpoint in `WHITEBOARD_ENDPOINT` environment variable or `.env` file
89
-
90
-
3. Configure the MCP server in your LLM app (like Claude Desktop or GitHub Copilot in VS Code):
88
+
2. Configure the MCP server in your LLM app (like Claude Desktop or GitHub Copilot in VS Code):
91
89
92
90
```json
93
91
"mcpServers": {
94
92
"Whiteboard": {
95
93
"command": "node",
96
-
"args": [
97
-
"<path-to-MCPServer-project>/index.js"
98
-
]
99
-
}
100
-
}
94
+
"args": [
95
+
"<path_to_MCPServer_project>/index.js"
96
+
]
97
+
}
98
+
}
101
99
```
102
100
101
+
> This will by default connect to local server (http://localhost:5000). If your whiteboard is not running locally, save the endpoint to a `.env` file
102
+
> ```
103
+
> WHITEBOARD_ENDPOINT=<endpoint-of-whiteboard>
104
+
> ```
105
+
>
106
+
> Change the config to the following:
107
+
> ```json
108
+
> "mcpServers": {
109
+
> "Whiteboard": {
110
+
> "command": "node",
111
+
> "args": [
112
+
> "--env-file",
113
+
> "<path_to_MCPServer_project>/.env",
114
+
> "<path_to_MCPServer_project>/index.js"
115
+
> ]
116
+
> }
117
+
> }
118
+
> ```
119
+
103
120
> Change `mcpServers` to `mcp` if you're using VS Code
104
121
105
122
4. Start the server if it's not automatically started (like in VS Code)
0 commit comments