We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac40e8a commit 427663fCopy full SHA for 427663f
src/telemetry/telemetry.ts
@@ -116,6 +116,7 @@ export class Telemetry {
116
public getCommonProperties(): CommonProperties {
117
return {
118
...this.commonProperties,
119
+ transport: this.userConfig.transport,
120
mcp_client_version: this.session.agentRunner?.version,
121
mcp_client_name: this.session.agentRunner?.name,
122
session_id: this.session.sessionId,
src/telemetry/types.ts
@@ -69,6 +69,7 @@ export type CommonProperties = {
69
is_container_env?: boolean;
70
mcp_client_version?: string;
71
mcp_client_name?: string;
72
+ transport?: "stdio" | "http";
73
config_atlas_auth?: TelemetryBoolSet;
74
config_connection_string?: TelemetryBoolSet;
75
session_id?: string;
0 commit comments