File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -692,6 +692,14 @@ export type EventMcpToolsChanged = {
692692 }
693693}
694694
695+ export type EventMcpBrowserOpenFailed = {
696+ type : "mcp.browser.open.failed"
697+ properties : {
698+ mcpName : string
699+ url : string
700+ }
701+ }
702+
695703export type EventCommandExecuted = {
696704 type : "command.executed"
697705 properties : {
@@ -875,6 +883,7 @@ export type Event =
875883 | EventTuiToastShow
876884 | EventTuiSessionSelect
877885 | EventMcpToolsChanged
886+ | EventMcpBrowserOpenFailed
878887 | EventCommandExecuted
879888 | EventSessionCreated
880889 | EventSessionUpdated
Original file line number Diff line number Diff line change 74737473 },
74747474 "required" : [" type" , " properties" ]
74757475 },
7476+ "Event.mcp.browser.open.failed" : {
7477+ "type" : " object" ,
7478+ "properties" : {
7479+ "type" : {
7480+ "type" : " string" ,
7481+ "const" : " mcp.browser.open.failed"
7482+ },
7483+ "properties" : {
7484+ "type" : " object" ,
7485+ "properties" : {
7486+ "mcpName" : {
7487+ "type" : " string"
7488+ },
7489+ "url" : {
7490+ "type" : " string"
7491+ }
7492+ },
7493+ "required" : [" mcpName" , " url" ]
7494+ }
7495+ },
7496+ "required" : [" type" , " properties" ]
7497+ },
74767498 "Event.command.executed" : {
74777499 "type" : " object" ,
74787500 "properties" : {
80168038 {
80178039 "$ref" : " #/components/schemas/Event.mcp.tools.changed"
80188040 },
8041+ {
8042+ "$ref" : " #/components/schemas/Event.mcp.browser.open.failed"
8043+ },
80198044 {
80208045 "$ref" : " #/components/schemas/Event.command.executed"
80218046 },
You can’t perform that action at this time.
0 commit comments