@airwallex/developer-mcp 0.3.0-beta.10 → 0.3.0-beta.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -145,4 +145,9 @@ This MCP server is developed and maintained by the Airwallex Developer Experienc
145
145
 
146
146
  ## Telemetry
147
147
 
148
- Telemetry is enabled by default. To disable telemetry, set the `DISABLE_TELEMETRY` environment variable to `true`. Only anonymous data about MCP tool usage is collected.
148
+ Telemetry is enabled by default. To disable telemetry, set the `DISABLE_TELEMETRY` environment variable to `true`.
149
+
150
+ Telemetry data includes:
151
+ - MCP tool usage events
152
+ - Stable device identifier and device OS
153
+ - The `AIRWALLEX_SANDBOX_CLIENT_ID` if configured (defaults to `unknown` when not set)
@@ -16,6 +16,7 @@ const DEFAULT_COMMON_DATA = {
16
16
  env: "unknown",
17
17
  networkType: "unknown",
18
18
  platform: os_1.default.platform(),
19
+ sandboxApiClientId: process.env.AIRWALLEX_SANDBOX_CLIENT_ID?.trim().slice(0, 64) || "unknown",
19
20
  sessionId: (0, uuid_1.v4)(),
20
21
  };
21
22
  class AirTrackerClient {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@airwallex/developer-mcp",
3
- "version": "v0.3.0-beta.10",
3
+ "version": "v0.3.0-beta.11",
4
4
  "description": "MCP server for AI agents that assist developers integrating with the Airwallex platform",
5
5
  "bin": {
6
6
  "awx-developer-mcp": "dist/index.js"