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
Copy file name to clipboardExpand all lines: packages/b2c-dx-mcp/README.md
+37Lines changed: 37 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -218,6 +218,43 @@ Storefront Next development tools for building modern storefronts.
218
218
219
219
> **Note:** Some tools appear in multiple toolsets (e.g., `mrt_bundle_push`, `scapi_discovery`). When using multiple toolsets, tools are automatically deduplicated.
220
220
221
+
## Telemetry
222
+
223
+
The MCP server collects anonymous usage telemetry to help improve the developer experience. Telemetry is enabled by default.
224
+
225
+
**Development mode**: Telemetry is automatically disabled when using `bin/dev.js`, so local development and testing won't pollute production data.
226
+
227
+
### Disabling Telemetry
228
+
229
+
Set one of these environment variables to disable telemetry:
230
+
231
+
```bash
232
+
# Salesforce CLI standard (recommended)
233
+
SF_DISABLE_TELEMETRY=true
234
+
235
+
# Or SFCC-specific
236
+
SFCC_DISABLE_TELEMETRY=true
237
+
```
238
+
239
+
You can also override the telemetry connection string for testing:
240
+
241
+
```bash
242
+
SFCC_APP_INSIGHTS_KEY=your-connection-string
243
+
```
244
+
245
+
### What We Collect
246
+
247
+
-**Server lifecycle events**: When the server starts, stops, or encounters errors
248
+
-**Tool usage**: Which tools are called and their execution time (not the arguments or results)
249
+
-**Command metrics**: Command duration and success/failure status
250
+
-**Environment info**: Platform, architecture, Node.js version, and package version
251
+
252
+
### What We Don't Collect
253
+
254
+
-**No credentials**: No API keys, passwords, or secrets
255
+
-**No business data**: No product data, customer information, or site content
256
+
-**No tool arguments**: No input parameters or output results from tool calls
257
+
-**No file contents**: No source code, configuration files, or project data
0 commit comments