File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -117,6 +117,7 @@ export class Server {
117
117
if ( command === "start" ) {
118
118
event . properties . startup_time_ms = commandDuration ;
119
119
event . properties . read_only_mode = this . userConfig . readOnly || false ;
120
+ event . properties . disallowed_tools = this . userConfig . disabledTools || [ ] ;
120
121
}
121
122
if ( command === "stop" ) {
122
123
event . properties . runtime_duration_ms = Date . now ( ) - this . startTime ;
Original file line number Diff line number Diff line change @@ -47,6 +47,8 @@ export interface ServerEvent extends BaseEvent {
47
47
reason ?: string ;
48
48
startup_time_ms ?: number ;
49
49
runtime_duration_ms ?: number ;
50
+ read_only_mode ?: boolean ;
51
+ disabled_tools ?: string [ ] ;
50
52
} & BaseEvent [ "properties" ] ;
51
53
}
52
54
You can’t perform that action at this time.
0 commit comments