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
@@ -298,6 +298,43 @@ Storefront Next development tools for building modern storefronts.
298
298
299
299
> **Note:** Some tools appear in multiple toolsets (e.g., `mrt_bundle_push`, `scapi_discovery`). When using multiple toolsets, tools are automatically deduplicated.
300
300
301
+
## Telemetry
302
+
303
+
The MCP server collects anonymous usage telemetry to help improve the developer experience. Telemetry is enabled by default.
304
+
305
+
**Development mode**: Telemetry is automatically disabled when using `bin/dev.js`, so local development and testing won't pollute production data.
306
+
307
+
### Disabling Telemetry
308
+
309
+
Set one of these environment variables to disable telemetry:
310
+
311
+
```bash
312
+
# Salesforce CLI standard (recommended)
313
+
SF_DISABLE_TELEMETRY=true
314
+
315
+
# Or SFCC-specific
316
+
SFCC_DISABLE_TELEMETRY=true
317
+
```
318
+
319
+
You can also override the telemetry connection string for testing:
320
+
321
+
```bash
322
+
SFCC_APP_INSIGHTS_KEY=your-connection-string
323
+
```
324
+
325
+
### What We Collect
326
+
327
+
-**Server lifecycle events**: When the server starts, stops, or encounters errors
328
+
-**Tool usage**: Which tools are called and their execution time (not the arguments or results)
329
+
-**Command metrics**: Command duration and success/failure status
330
+
-**Environment info**: Platform, architecture, Node.js version, and package version
331
+
332
+
### What We Don't Collect
333
+
334
+
-**No credentials**: No API keys, passwords, or secrets
335
+
-**No business data**: No product data, customer information, or site content
336
+
-**No tool arguments**: No input parameters or output results from tool calls
337
+
-**No file contents**: No source code, configuration files, or project data
0 commit comments