@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 +6 -1
- package/dist/services/AirTrackerClient.js +1 -0
- package/package.json +1 -1
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`.
|
|
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