@univerjs-pro/mcp 0.10.8 → 0.10.9-nightly.202509260614

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.
@@ -15,7 +15,7 @@ export declare enum MCPConnectionStatus {
15
15
  */
16
16
  export declare enum MCPConnectionError {
17
17
  NONE = "NONE",
18
- INVALID_API_KEY = "INVALID_API_KEY",
18
+ UNAUTHORIZED = "UNAUTHORIZED",
19
19
  SESSION_ID_OCCUPIED = "SESSION_ID_OCCUPIED",
20
20
  NETWORK_ERROR = "NETWORK_ERROR",
21
21
  MAX_RETRIES_EXCEEDED = "MAX_RETRIES_EXCEEDED"
@@ -1,6 +1,6 @@
1
1
  import { Disposable, IConfigService, ILogService, Injector } from '@univerjs/core';
2
2
  import { HTTPService } from '@univerjs/network';
3
- import { MCPUIEventService } from '../services/mcp-ui-event.service';
3
+ import { MCPEventService } from '../services/mcp-event.service';
4
4
  import { MCPConnectionError, MCPConnectionStatus } from './config.schema';
5
5
  /**
6
6
  * MCP WebSocket Message interface
@@ -31,7 +31,7 @@ export declare class MCPConnectionController extends Disposable {
31
31
  private readonly _configService;
32
32
  private readonly _logService;
33
33
  private readonly _httpService;
34
- private readonly _mcpUIEventService;
34
+ private readonly _mcpEventService;
35
35
  private _socket;
36
36
  private _retryCount;
37
37
  private _connectionStatus;
@@ -46,7 +46,7 @@ export declare class MCPConnectionController extends Disposable {
46
46
  readonly sessionId$: import('rxjs').Observable<string>;
47
47
  private readonly _message$;
48
48
  readonly message$: import('rxjs').Observable<IMCPMessage>;
49
- constructor(_injector: Injector, _configService: IConfigService, _logService: ILogService, _httpService: HTTPService, _mcpUIEventService: MCPUIEventService);
49
+ constructor(_injector: Injector, _configService: IConfigService, _logService: ILogService, _httpService: HTTPService, _mcpEventService: MCPEventService);
50
50
  /**
51
51
  * Get current connection status
52
52
  */
@@ -111,11 +111,11 @@ export declare class MCPConnectionController extends Disposable {
111
111
  */
112
112
  private _scheduleReconnect;
113
113
  /**
114
- * Set connection status and emit UI event
114
+ * Set connection status
115
115
  */
116
116
  private _setConnectionStatus;
117
117
  /**
118
- * Set connection error and emit UI event
118
+ * Set connection error
119
119
  */
120
120
  private _setConnectionError;
121
121
  /**
@@ -1,6 +1,6 @@
1
1
  import { Disposable, ILogService } from '@univerjs/core';
2
2
  import { z } from 'zod';
3
- import { MCPUIEventService } from '../services/mcp-ui-event.service';
3
+ import { MCPEventService } from '../services/mcp-event.service';
4
4
  /**
5
5
  * MCP Tool definition interface
6
6
  */
@@ -37,9 +37,9 @@ export declare const IMCPToolRegistry: import('@wendellhu/redi').IdentifierDecor
37
37
  */
38
38
  export declare class MCPToolRegistryController extends Disposable implements IMCPToolRegistry {
39
39
  private readonly _logService;
40
- private readonly _mcpUIEventService;
40
+ private readonly _mcpEventService;
41
41
  private readonly _tools;
42
- constructor(_logService: ILogService, _mcpUIEventService: MCPUIEventService);
42
+ constructor(_logService: ILogService, _mcpEventService: MCPEventService);
43
43
  /**
44
44
  * Register a tool for MCP calls
45
45
  */
@@ -0,0 +1,150 @@
1
+ import { MCPConnectionError, MCPConnectionStatus, MCPEventId } from '@univerjs-pro/mcp';
2
+ import { IEventBase } from '@univerjs/core/facade';
3
+ /**
4
+ * Event triggered when MCP connection status changes
5
+ */
6
+ export interface IMcpConnectionStatusChangedEvent extends IEventBase {
7
+ /**
8
+ * Connection status
9
+ */
10
+ status: MCPConnectionStatus;
11
+ /**
12
+ * Connection error (if any)
13
+ */
14
+ error?: MCPConnectionError;
15
+ /**
16
+ * Status message
17
+ */
18
+ message?: string;
19
+ }
20
+ /**
21
+ * Event triggered when MCP tool call is received
22
+ */
23
+ export interface IMcpToolCallReceivedEvent extends IEventBase {
24
+ /**
25
+ * The name of the tool being called
26
+ */
27
+ toolName: string;
28
+ /**
29
+ * The parameters passed to the tool
30
+ */
31
+ parameters: unknown;
32
+ /**
33
+ * The tool call ID (for tracking)
34
+ */
35
+ callId?: string;
36
+ }
37
+ /**
38
+ * Event triggered when MCP tool call executes successfully
39
+ */
40
+ export interface IMcpToolCallExecutedEvent extends IEventBase {
41
+ /**
42
+ * The name of the tool that was called
43
+ */
44
+ toolName: string;
45
+ /**
46
+ * The tool call ID (for tracking)
47
+ */
48
+ callId?: string;
49
+ /**
50
+ * The result returned by the tool
51
+ */
52
+ result?: unknown;
53
+ }
54
+ /**
55
+ * Event triggered when MCP tool call fails
56
+ */
57
+ export interface IMcpToolCallFailedEvent extends IEventBase {
58
+ /**
59
+ * The name of the tool that failed
60
+ */
61
+ toolName: string;
62
+ /**
63
+ * The tool call ID (for tracking)
64
+ */
65
+ callId?: string;
66
+ /**
67
+ * The error that occurred
68
+ */
69
+ error?: string;
70
+ }
71
+ /**
72
+ * Constants for MCP event names
73
+ * @ignore
74
+ * @example
75
+ * ```typescript
76
+ * // Subscribe to connection status changes
77
+ * univerAPI.addEvent(univerAPI.Event.McpConnectionStatusChanged, (event) => {
78
+ * console.log('Connection status:', event.status);
79
+ * });
80
+ *
81
+ * // Subscribe to tool call events
82
+ * univerAPI.addEvent(univerAPI.Event.McpToolCallReceived, (event) => {
83
+ * console.log('Tool called:', event.toolName);
84
+ * });
85
+ * ```
86
+ */
87
+ export interface IFMCPEventName {
88
+ /**
89
+ * Event triggered when MCP connection status changes
90
+ * @see {@link IMcpConnectionStatusChangedEvent}
91
+ * @example
92
+ * ```typescript
93
+ * univerAPI.addEvent(univerAPI.Event.McpConnectionStatusChanged, (event) => {
94
+ * if (event.status === 'CONNECTED') {
95
+ * console.log('MCP server connected');
96
+ * }
97
+ * });
98
+ * ```
99
+ */
100
+ readonly McpConnectionStatusChanged: typeof MCPEventId.McpConnectionStatusChanged;
101
+ /**
102
+ * Event triggered when MCP tool call is received
103
+ * @see {@link IMcpToolCallReceivedEvent}
104
+ * @example
105
+ * ```typescript
106
+ * univerAPI.addEvent(univerAPI.Event.McpToolCallReceived, (event) => {
107
+ * console.log(`Received tool call: ${event.toolName}`, event.parameters);
108
+ * });
109
+ * ```
110
+ */
111
+ readonly McpToolCallReceived: typeof MCPEventId.McpToolCallReceived;
112
+ /**
113
+ * Event triggered when MCP tool call executes successfully
114
+ * @see {@link IMcpToolCallExecutedEvent}
115
+ * @example
116
+ * ```typescript
117
+ * univerAPI.addEvent(univerAPI.Event.McpToolCallExecuted, (event) => {
118
+ * console.log(`Tool ${event.toolName} executed successfully:`, event.result);
119
+ * });
120
+ * ```
121
+ */
122
+ readonly McpToolCallExecuted: typeof MCPEventId.McpToolCallExecuted;
123
+ /**
124
+ * Event triggered when MCP tool call fails
125
+ * @see {@link IMcpToolCallFailedEvent}
126
+ * @example
127
+ * ```typescript
128
+ * univerAPI.addEvent(univerAPI.Event.McpToolCallFailed, (event) => {
129
+ * console.error(`Tool ${event.toolName} failed:`, event.error);
130
+ * });
131
+ * ```
132
+ */
133
+ readonly McpToolCallFailed: typeof MCPEventId.McpToolCallFailed;
134
+ }
135
+ /**
136
+ * Event configuration for MCP events
137
+ * @ignore
138
+ */
139
+ export interface IMCPEventConfig {
140
+ McpConnectionStatusChanged: IMcpConnectionStatusChangedEvent;
141
+ McpToolCallReceived: IMcpToolCallReceivedEvent;
142
+ McpToolCallExecuted: IMcpToolCallExecutedEvent;
143
+ McpToolCallFailed: IMcpToolCallFailedEvent;
144
+ }
145
+ declare module '@univerjs/core/facade' {
146
+ interface FEventName extends IFMCPEventName {
147
+ }
148
+ interface IEventParamConfig extends IMCPEventConfig {
149
+ }
150
+ }
@@ -1,4 +1,5 @@
1
1
  import { IMCPTool } from '@univerjs-pro/mcp';
2
+ import { Injector } from '@univerjs/core';
2
3
  import { FUniver } from '@univerjs/core/facade';
3
4
  /**
4
5
  * @ignore
@@ -24,8 +25,22 @@ interface IFUniverMCP {
24
25
  * @param params The parameters for the tool.
25
26
  */
26
27
  callMCPTool(toolName: string, params: unknown): Promise<any>;
28
+ /**
29
+ * Get current MCP connection status.
30
+ */
31
+ getMCPConnectionStatus(): string;
32
+ /**
33
+ * Connect to MCP server.
34
+ */
35
+ connectMCP(): void;
36
+ /**
37
+ * Disconnect from MCP server.
38
+ */
39
+ disconnectMCP(): void;
27
40
  }
28
41
  export declare class FUniverMCPMixin extends FUniver implements IFUniverMCP {
42
+ _initialize(injector: Injector): void;
43
+ private _registerMCPFacadeEvents;
29
44
  validateMCPToolCall(toolName: string, params: unknown): {
30
45
  isValid: boolean;
31
46
  error?: string;
@@ -33,6 +48,9 @@ export declare class FUniverMCPMixin extends FUniver implements IFUniverMCP {
33
48
  };
34
49
  getAllMCPTools(): IMCPTool[];
35
50
  callMCPTool(toolName: string, params: unknown): Promise<any>;
51
+ getMCPConnectionStatus(): string;
52
+ connectMCP(): void;
53
+ disconnectMCP(): void;
36
54
  }
37
55
  declare module '@univerjs/core/facade' {
38
56
  interface FUniver extends IFUniverMCP {
@@ -1 +1,3 @@
1
+ import './f-event';
1
2
  import './f-univer';
3
+ export type { IMcpConnectionStatusChangedEvent, IMcpToolCallExecutedEvent, IMcpToolCallFailedEvent, IMcpToolCallReceivedEvent, } from './f-event';
@@ -4,4 +4,5 @@ export { MCPConnectionController } from './controllers/mcp-connection.controller
4
4
  export { MCPMessageController } from './controllers/mcp-message.controller';
5
5
  export { type IMCPTool, IMCPToolRegistry, MCPToolRegistryController } from './controllers/mcp-tool-registry.controller';
6
6
  export { UniverMCPPlugin } from './plugin';
7
- export { type IConfigUpdateEvent, type IConnectionStatusEvent, type IMCPUIEvent, type IToolCallEvent, type IToolExecutionEvent, MCPUIEventId, MCPUIEventService } from './services/mcp-ui-event.service';
7
+ export { MCPEventId } from './services/mcp-event.service';
8
+ export { MCPEventService } from './services/mcp-event.service';
@@ -0,0 +1,86 @@
1
+ import { MCPConnectionError, MCPConnectionStatus } from '../controllers/config.schema';
2
+ /**
3
+ * MCP event interface - unified for all event types with strong typing
4
+ */
5
+ export type IMCPEvent = {
6
+ type: MCPEventId.McpConnectionStatusChanged;
7
+ data: IConnectionStatusEvent;
8
+ } | {
9
+ type: MCPEventId.McpToolCallReceived;
10
+ data: IToolCallEvent;
11
+ } | {
12
+ type: MCPEventId.McpToolCallExecuted;
13
+ data: IToolExecutionEvent;
14
+ } | {
15
+ type: MCPEventId.McpToolCallFailed;
16
+ data: IToolExecutionEvent;
17
+ };
18
+ /**
19
+ * MCP event IDs for communication between MCP core and consumers
20
+ */
21
+ export declare enum MCPEventId {
22
+ McpConnectionStatusChanged = "McpConnectionStatusChanged",
23
+ McpToolCallReceived = "McpToolCallReceived",
24
+ McpToolCallExecuted = "McpToolCallExecuted",
25
+ McpToolCallFailed = "McpToolCallFailed"
26
+ }
27
+ /**
28
+ * Connection status change event data
29
+ */
30
+ export interface IConnectionStatusEvent {
31
+ status: MCPConnectionStatus;
32
+ error?: MCPConnectionError;
33
+ message?: string;
34
+ }
35
+ /**
36
+ * Tool call event data
37
+ */
38
+ export interface IToolCallEvent {
39
+ toolName: string;
40
+ parameters: unknown;
41
+ callId?: string;
42
+ }
43
+ /**
44
+ * Tool execution result event data
45
+ */
46
+ export interface IToolExecutionEvent {
47
+ toolName: string;
48
+ callId?: string;
49
+ result?: unknown;
50
+ error?: string;
51
+ }
52
+ /**
53
+ * Configuration update event data
54
+ */
55
+ export interface IConfigUpdateEvent {
56
+ key: string;
57
+ value: unknown;
58
+ }
59
+ /**
60
+ * MCP Event Service
61
+ *
62
+ * This service provides event communication for MCP system:
63
+ * - Between MCP core and MCP UI plugin
64
+ * - For direct subscription by non-facade users
65
+ * - As source for facade event forwarding
66
+ */
67
+ export declare class MCPEventService {
68
+ private readonly _event$;
69
+ readonly event$: import('rxjs').Observable<IMCPEvent>;
70
+ /**
71
+ * Emit an MCP event (private - use specific emit methods for type safety)
72
+ */
73
+ private emitEvent;
74
+ /**
75
+ * Emit connection status change event
76
+ */
77
+ _emitConnectionStatus(event: IConnectionStatusEvent): void;
78
+ /**
79
+ * Emit tool call received event
80
+ */
81
+ _emitToolCallReceived(event: IToolCallEvent): void;
82
+ /**
83
+ * Emit tool execution result event
84
+ */
85
+ _emitToolExecuted(event: IToolExecutionEvent): void;
86
+ }
package/lib/umd/facade.js CHANGED
@@ -1 +1 @@
1
- function _0x3574(_0x21c890,_0x118a0c){var _0x3e1a15=_0x3e1a();return _0x3574=function(_0x357486,_0x1f648d){_0x357486=_0x357486-0x13b;var _0x36af00=_0x3e1a15[_0x357486];return _0x36af00;},_0x3574(_0x21c890,_0x118a0c);}function _0x3e1a(){var _0x388eb9=['extend','amd','3039048xkoamD','5696404lNLCSO','validateToolCall','2651230uquYNl','getAllMCPTools','1752960BtmxNu','6vMKEvF','2218NOHXEm','2793200ygtBQS','executeTool','15182955agZqqb','callMCPTool','@univerjs/core/facade','FUniver','object','UniverProMcp','getAllTools','@univerjs-pro/mcp','1DQxcKr','_injector','function','get','UniverCoreFacade'];_0x3e1a=function(){return _0x388eb9;};return _0x3e1a();}(function(_0x59e762,_0x464325){var _0x544892=_0x3574,_0x46ee43=_0x59e762();while(!![]){try{var _0x3dc82a=parseInt(_0x544892(0x140))/0x1*(-parseInt(_0x544892(0x14e))/0x2)+-parseInt(_0x544892(0x14c))/0x3+-parseInt(_0x544892(0x14f))/0x4+parseInt(_0x544892(0x14a))/0x5+parseInt(_0x544892(0x14d))/0x6*(-parseInt(_0x544892(0x148))/0x7)+parseInt(_0x544892(0x147))/0x8+parseInt(_0x544892(0x151))/0x9;if(_0x3dc82a===_0x464325)break;else _0x46ee43['push'](_0x46ee43['shift']());}catch(_0x177597){_0x46ee43['push'](_0x46ee43['shift']());}}}(_0x3e1a,0x79fa5),function(_0x3994d5,_0x5345d1){var _0x49adbb=_0x3574;typeof exports==_0x49adbb(0x13c)&&typeof module<'u'?_0x5345d1(require('@univerjs-pro/mcp'),require('@univerjs/core/facade')):typeof define==_0x49adbb(0x142)&&define[_0x49adbb(0x146)]?define([_0x49adbb(0x13f),_0x49adbb(0x153)],_0x5345d1):(_0x3994d5=typeof globalThis<'u'?globalThis:_0x3994d5||self,_0x5345d1(_0x3994d5[_0x49adbb(0x13d)],_0x3994d5[_0x49adbb(0x144)]));}(this,function(_0x53d04b,_0xb94797){'use strict';var _0x2fd051=_0x3574;class _0x58d208 extends _0xb94797[_0x2fd051(0x13b)]{['validateMCPToolCall'](_0x1cf6a1,_0x2bf038){var _0x265fe8=_0x2fd051;return this[_0x265fe8(0x141)][_0x265fe8(0x143)](_0x53d04b['IMCPToolRegistry'])[_0x265fe8(0x149)](_0x1cf6a1,_0x2bf038);}[_0x2fd051(0x14b)](){var _0x4440c1=_0x2fd051;return this[_0x4440c1(0x141)]['get'](_0x53d04b['IMCPToolRegistry'])[_0x4440c1(0x13e)]();}[_0x2fd051(0x152)](_0x15c76c,_0x13bb24){var _0x5e6382=_0x2fd051;return this[_0x5e6382(0x141)][_0x5e6382(0x143)](_0x53d04b['IMCPToolRegistry'])[_0x5e6382(0x150)](_0x15c76c,_0x13bb24);}}_0xb94797[_0x2fd051(0x13b)][_0x2fd051(0x145)](_0x58d208);}));
1
+ function _0x1e07(){const _0x1f50ca=['toDisposable','event$','_injector','McpToolCallExecuted','extend','7466YtiZiW','UniverCoreFacade','@univerjs/core','16418208klxgAO','@univerjs/core/facade','MCPEventId','@univerjs-pro/mcp','data','McpConnectionStatusChanged','IMCPToolRegistry','7AlxeJn','786952CzdMFI','30NxsBmw','connect','validateToolCall','Event','MCPConnectionController','type','McpToolCallReceived','function','get','179oYLQmo','McpToolCallFailed','getAllTools','FEventName','subscribe','getConnectionStatus','fireEvent','MCPEventService','_registerMCPFacadeEvents','UniverProMcp','3yLwXGI','3565WlJGLX','registerEventHandler','6654VOUOfc','8842064qoaJOS','3232791gWuHBj','disconnectMCP','3091188kQlNza','executeTool','disconnect','_initialize','FUniver'];_0x1e07=function(){return _0x1f50ca;};return _0x1e07();}function _0x34ee(_0x70256d,_0x2b557d){const _0x1e07e3=_0x1e07();return _0x34ee=function(_0x34eece,_0x2f6e7c){_0x34eece=_0x34eece-0x64;let _0x45a26b=_0x1e07e3[_0x34eece];return _0x45a26b;},_0x34ee(_0x70256d,_0x2b557d);}(function(_0x181b36,_0x438e34){const _0x3f7012=_0x34ee,_0x259507=_0x181b36();while(!![]){try{const _0x1b59a4=-parseInt(_0x3f7012(0x92))/0x1*(-parseInt(_0x3f7012(0x7d))/0x2)+parseInt(_0x3f7012(0x6c))/0x3*(-parseInt(_0x3f7012(0x73))/0x4)+parseInt(_0x3f7012(0x6d))/0x5*(-parseInt(_0x3f7012(0x6f))/0x6)+parseInt(_0x3f7012(0x87))/0x7*(-parseInt(_0x3f7012(0x88))/0x8)+-parseInt(_0x3f7012(0x71))/0x9*(-parseInt(_0x3f7012(0x89))/0xa)+-parseInt(_0x3f7012(0x70))/0xb+parseInt(_0x3f7012(0x80))/0xc;if(_0x1b59a4===_0x438e34)break;else _0x259507['push'](_0x259507['shift']());}catch(_0x186a95){_0x259507['push'](_0x259507['shift']());}}}(_0x1e07,0x9e459),function(_0x2d51dc,_0x3d870c){const _0x537046=_0x34ee;typeof exports=='object'&&typeof module<'u'?_0x3d870c(require('@univerjs-pro/mcp'),require('@univerjs/core/facade'),require('@univerjs/core')):typeof define==_0x537046(0x90)&&define['amd']?define([_0x537046(0x83),_0x537046(0x81),_0x537046(0x7f)],_0x3d870c):(_0x2d51dc=typeof globalThis<'u'?globalThis:_0x2d51dc||self,_0x3d870c(_0x2d51dc[_0x537046(0x6b)],_0x2d51dc[_0x537046(0x7e)],_0x2d51dc['UniverCore']));}(this,function(_0x528b23,_0x4f2cc2,_0x456302){'use strict';const _0x2926b7=_0x34ee;class _0x51eccc{get[_0x2926b7(0x85)](){const _0x2dda36=_0x2926b7;return _0x528b23[_0x2dda36(0x82)][_0x2dda36(0x85)];}get[_0x2926b7(0x8f)](){const _0x239b4e=_0x2926b7;return _0x528b23[_0x239b4e(0x82)]['McpToolCallReceived'];}get[_0x2926b7(0x7b)](){const _0x1aedb4=_0x2926b7;return _0x528b23['MCPEventId'][_0x1aedb4(0x7b)];}get[_0x2926b7(0x93)](){const _0x3acd18=_0x2926b7;return _0x528b23[_0x3acd18(0x82)]['McpToolCallFailed'];}}_0x4f2cc2[_0x2926b7(0x65)]['extend'](_0x51eccc);class _0x53a117 extends _0x4f2cc2[_0x2926b7(0x77)]{[_0x2926b7(0x76)](_0x34c044){const _0xf5ef8c=_0x2926b7;this[_0xf5ef8c(0x6a)](_0x34c044);}[_0x2926b7(0x6a)](_0x2b296a){const _0x62a35b=_0x2926b7,_0x582dac=_0x2b296a[_0x62a35b(0x91)](_0x528b23[_0x62a35b(0x69)]);this[_0x62a35b(0x6e)](this[_0x62a35b(0x8c)][_0x62a35b(0x85)],()=>_0x456302[_0x62a35b(0x78)](_0x582dac[_0x62a35b(0x79)][_0x62a35b(0x66)](_0x35283e=>{const _0x233737=_0x62a35b;_0x35283e[_0x233737(0x8e)]===_0x528b23['MCPEventId'][_0x233737(0x85)]&&this[_0x233737(0x68)](this[_0x233737(0x8c)]['McpConnectionStatusChanged'],_0x35283e['data']);}))),this['registerEventHandler'](this[_0x62a35b(0x8c)]['McpToolCallReceived'],()=>_0x456302[_0x62a35b(0x78)](_0x582dac[_0x62a35b(0x79)][_0x62a35b(0x66)](_0x30ec04=>{const _0x3f5527=_0x62a35b;_0x30ec04[_0x3f5527(0x8e)]===_0x528b23['MCPEventId'][_0x3f5527(0x8f)]&&this[_0x3f5527(0x68)](this[_0x3f5527(0x8c)][_0x3f5527(0x8f)],_0x30ec04['data']);}))),this[_0x62a35b(0x6e)](this[_0x62a35b(0x8c)][_0x62a35b(0x7b)],()=>_0x456302['toDisposable'](_0x582dac[_0x62a35b(0x79)][_0x62a35b(0x66)](_0x328497=>{const _0x13e125=_0x62a35b;_0x328497['type']===_0x528b23['MCPEventId'][_0x13e125(0x7b)]&&this[_0x13e125(0x68)](this[_0x13e125(0x8c)][_0x13e125(0x7b)],_0x328497['data']);}))),this[_0x62a35b(0x6e)](this[_0x62a35b(0x8c)][_0x62a35b(0x93)],()=>_0x456302[_0x62a35b(0x78)](_0x582dac[_0x62a35b(0x79)][_0x62a35b(0x66)](_0x3bc5fc=>{const _0x583f51=_0x62a35b;_0x3bc5fc[_0x583f51(0x8e)]===_0x528b23[_0x583f51(0x82)][_0x583f51(0x93)]&&this['fireEvent'](this[_0x583f51(0x8c)]['McpToolCallFailed'],_0x3bc5fc[_0x583f51(0x84)]);})));}['validateMCPToolCall'](_0x46048b,_0x29091a){const _0x469cd1=_0x2926b7;return this['_injector']['get'](_0x528b23[_0x469cd1(0x86)])[_0x469cd1(0x8b)](_0x46048b,_0x29091a);}['getAllMCPTools'](){const _0x14b802=_0x2926b7;return this[_0x14b802(0x7a)][_0x14b802(0x91)](_0x528b23['IMCPToolRegistry'])[_0x14b802(0x64)]();}['callMCPTool'](_0x597335,_0xf852ca){const _0x473227=_0x2926b7;return this[_0x473227(0x7a)][_0x473227(0x91)](_0x528b23[_0x473227(0x86)])[_0x473227(0x74)](_0x597335,_0xf852ca);}['getMCPConnectionStatus'](){const _0xdf3c31=_0x2926b7;return this[_0xdf3c31(0x7a)][_0xdf3c31(0x91)](_0x528b23[_0xdf3c31(0x8d)])[_0xdf3c31(0x67)]();}['connectMCP'](){const _0x33cd73=_0x2926b7;this[_0x33cd73(0x7a)][_0x33cd73(0x91)](_0x528b23[_0x33cd73(0x8d)])[_0x33cd73(0x8a)]();}[_0x2926b7(0x72)](){const _0x34175e=_0x2926b7;this['_injector'][_0x34175e(0x91)](_0x528b23[_0x34175e(0x8d)])[_0x34175e(0x75)]();}}_0x4f2cc2['FUniver'][_0x2926b7(0x7c)](_0x53a117);}));