@univerjs-pro/mcp 0.10.8-nightly.202509200616 → 0.10.9-experimental.20250925-61b61a0

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 _0x2375(_0x2e2888,_0x190254){var _0x1af94c=_0x1af9();return _0x2375=function(_0x23753f,_0x1bcb5a){_0x23753f=_0x23753f-0x16a;var _0x2f398e=_0x1af94c[_0x23753f];return _0x2f398e;},_0x2375(_0x2e2888,_0x190254);}(function(_0x1dbed3,_0x155380){var _0x4a4185=_0x2375,_0x57dfe8=_0x1dbed3();while(!![]){try{var _0x48faef=-parseInt(_0x4a4185(0x179))/0x1*(parseInt(_0x4a4185(0x173))/0x2)+-parseInt(_0x4a4185(0x16b))/0x3*(parseInt(_0x4a4185(0x174))/0x4)+parseInt(_0x4a4185(0x17a))/0x5*(-parseInt(_0x4a4185(0x175))/0x6)+-parseInt(_0x4a4185(0x181))/0x7+-parseInt(_0x4a4185(0x16e))/0x8+parseInt(_0x4a4185(0x183))/0x9*(parseInt(_0x4a4185(0x17f))/0xa)+parseInt(_0x4a4185(0x178))/0xb*(parseInt(_0x4a4185(0x16a))/0xc);if(_0x48faef===_0x155380)break;else _0x57dfe8['push'](_0x57dfe8['shift']());}catch(_0x385a4f){_0x57dfe8['push'](_0x57dfe8['shift']());}}}(_0x1af9,0x3664a),function(_0x53011d,_0x689793){var _0x1f8b0f=_0x2375;typeof exports==_0x1f8b0f(0x171)&&typeof module<'u'?_0x689793(require('@univerjs-pro/mcp'),require('@univerjs/core/facade')):typeof define==_0x1f8b0f(0x170)&&define['amd']?define(['@univerjs-pro/mcp',_0x1f8b0f(0x172)],_0x689793):(_0x53011d=typeof globalThis<'u'?globalThis:_0x53011d||self,_0x689793(_0x53011d[_0x1f8b0f(0x16c)],_0x53011d[_0x1f8b0f(0x177)]));}(this,function(_0x4582a5,_0x1497e9){'use strict';var _0x39cbd8=_0x2375;class _0x301aa5 extends _0x1497e9[_0x39cbd8(0x17e)]{[_0x39cbd8(0x17d)](_0xa71a07,_0x237f63){var _0x3c5bf7=_0x39cbd8;return this[_0x3c5bf7(0x16f)][_0x3c5bf7(0x182)](_0x4582a5['IMCPToolRegistry'])['validateToolCall'](_0xa71a07,_0x237f63);}[_0x39cbd8(0x16d)](){var _0x25b76b=_0x39cbd8;return this[_0x25b76b(0x16f)][_0x25b76b(0x182)](_0x4582a5[_0x25b76b(0x17b)])[_0x25b76b(0x17c)]();}[_0x39cbd8(0x176)](_0x3bb9fe,_0x242c5f){var _0x5cd002=_0x39cbd8;return this[_0x5cd002(0x16f)][_0x5cd002(0x182)](_0x4582a5['IMCPToolRegistry'])[_0x5cd002(0x180)](_0x3bb9fe,_0x242c5f);}}_0x1497e9['FUniver']['extend'](_0x301aa5);}));function _0x1af9(){var _0x3fe847=['895beodaE','5JKwdvq','IMCPToolRegistry','getAllTools','validateMCPToolCall','FUniver','1572470wtWkAO','executeTool','645099drghfr','get','9Toupus','228nFDNuQ','978477NIqiCR','UniverProMcp','getAllMCPTools','1576016rBNvEk','_injector','function','object','@univerjs/core/facade','806UAlWoK','4wILNBW','1437378RfHYnX','callMCPTool','UniverCoreFacade','741697OhhdvE'];_0x1af9=function(){return _0x3fe847;};return _0x1af9();}
1
+ (function(_0x3fc7a6,_0x28602a){const _0xcd5aa6=_0x13bd,_0x100d41=_0x3fc7a6();while(!![]){try{const _0x3e22f1=-parseInt(_0xcd5aa6(0x73))/0x1*(parseInt(_0xcd5aa6(0x77))/0x2)+-parseInt(_0xcd5aa6(0x8b))/0x3*(-parseInt(_0xcd5aa6(0x76))/0x4)+parseInt(_0xcd5aa6(0x88))/0x5+parseInt(_0xcd5aa6(0x7b))/0x6+parseInt(_0xcd5aa6(0x9a))/0x7+-parseInt(_0xcd5aa6(0x7a))/0x8+-parseInt(_0xcd5aa6(0x6a))/0x9;if(_0x3e22f1===_0x28602a)break;else _0x100d41['push'](_0x100d41['shift']());}catch(_0x1019e6){_0x100d41['push'](_0x100d41['shift']());}}}(_0x9e8b,0xba8a0),function(_0x565a65,_0x5036ea){const _0x11e0b2=_0x13bd;typeof exports==_0x11e0b2(0x75)&&typeof module<'u'?_0x5036ea(require('@univerjs-pro/mcp'),require('@univerjs/core/facade'),require('@univerjs/core')):typeof define==_0x11e0b2(0x6e)&&define[_0x11e0b2(0x94)]?define([_0x11e0b2(0x7d),_0x11e0b2(0x6f),_0x11e0b2(0x86)],_0x5036ea):(_0x565a65=typeof globalThis<'u'?globalThis:_0x565a65||self,_0x5036ea(_0x565a65[_0x11e0b2(0x95)],_0x565a65[_0x11e0b2(0x70)],_0x565a65[_0x11e0b2(0x85)]));}(this,function(_0x75ebb4,_0x2dec25,_0x3de9a4){'use strict';const _0x219183=_0x13bd;class _0x5a2364{get[_0x219183(0x87)](){const _0x404e7d=_0x219183;return _0x75ebb4[_0x404e7d(0x68)][_0x404e7d(0x87)];}get['McpToolCallReceived'](){const _0x18c2b1=_0x219183;return _0x75ebb4[_0x18c2b1(0x68)][_0x18c2b1(0x81)];}get[_0x219183(0x8a)](){const _0x1bef1f=_0x219183;return _0x75ebb4[_0x1bef1f(0x68)][_0x1bef1f(0x8a)];}get[_0x219183(0x78)](){const _0x512019=_0x219183;return _0x75ebb4[_0x512019(0x68)]['McpToolCallFailed'];}}_0x2dec25[_0x219183(0x72)]['extend'](_0x5a2364);class _0x4a6ee4 extends _0x2dec25[_0x219183(0x8e)]{[_0x219183(0x74)](_0x2bf871){const _0x24e4b6=_0x219183;this[_0x24e4b6(0x71)](_0x2bf871);}[_0x219183(0x71)](_0x152e7e){const _0x40857e=_0x219183,_0x930096=_0x152e7e[_0x40857e(0x98)](_0x75ebb4[_0x40857e(0x79)]);this[_0x40857e(0x93)](this['Event'][_0x40857e(0x87)],()=>_0x3de9a4[_0x40857e(0x7e)](_0x930096['event$'][_0x40857e(0x92)](_0x420981=>{const _0x1f83c9=_0x40857e;_0x420981[_0x1f83c9(0x8d)]===_0x75ebb4[_0x1f83c9(0x68)][_0x1f83c9(0x87)]&&this[_0x1f83c9(0x80)](this[_0x1f83c9(0x91)][_0x1f83c9(0x87)],_0x420981[_0x1f83c9(0x6c)]);}))),this[_0x40857e(0x93)](this[_0x40857e(0x91)]['McpToolCallReceived'],()=>_0x3de9a4['toDisposable'](_0x930096[_0x40857e(0x8c)][_0x40857e(0x92)](_0x6d98e6=>{const _0x86c7ee=_0x40857e;_0x6d98e6['type']===_0x75ebb4['MCPEventId'][_0x86c7ee(0x81)]&&this['fireEvent'](this[_0x86c7ee(0x91)][_0x86c7ee(0x81)],_0x6d98e6[_0x86c7ee(0x6c)]);}))),this['registerEventHandler'](this[_0x40857e(0x91)][_0x40857e(0x8a)],()=>_0x3de9a4[_0x40857e(0x7e)](_0x930096['event$'][_0x40857e(0x92)](_0x23bcc5=>{const _0xa69b68=_0x40857e;_0x23bcc5[_0xa69b68(0x8d)]===_0x75ebb4[_0xa69b68(0x68)][_0xa69b68(0x8a)]&&this['fireEvent'](this[_0xa69b68(0x91)][_0xa69b68(0x8a)],_0x23bcc5['data']);}))),this[_0x40857e(0x93)](this['Event'][_0x40857e(0x78)],()=>_0x3de9a4[_0x40857e(0x7e)](_0x930096[_0x40857e(0x8c)]['subscribe'](_0x1fda29=>{const _0x678bbd=_0x40857e;_0x1fda29[_0x678bbd(0x8d)]===_0x75ebb4['MCPEventId'][_0x678bbd(0x78)]&&this[_0x678bbd(0x80)](this[_0x678bbd(0x91)][_0x678bbd(0x78)],_0x1fda29[_0x678bbd(0x6c)]);})));}[_0x219183(0x7f)](_0x3c4fb0,_0x3ae9ea){const _0x5a88e8=_0x219183;return this['_injector'][_0x5a88e8(0x98)](_0x75ebb4[_0x5a88e8(0x8f)])[_0x5a88e8(0x6d)](_0x3c4fb0,_0x3ae9ea);}[_0x219183(0x97)](){const _0x23f74c=_0x219183;return this[_0x23f74c(0x83)]['get'](_0x75ebb4[_0x23f74c(0x8f)])['getAllTools']();}[_0x219183(0x89)](_0x249552,_0x3116bb){const _0x1304e1=_0x219183;return this[_0x1304e1(0x83)]['get'](_0x75ebb4[_0x1304e1(0x8f)])[_0x1304e1(0x90)](_0x249552,_0x3116bb);}[_0x219183(0x84)](){const _0x166d55=_0x219183;return this[_0x166d55(0x83)][_0x166d55(0x98)](_0x75ebb4[_0x166d55(0x99)])[_0x166d55(0x82)]();}[_0x219183(0x6b)](){const _0x53c0d1=_0x219183;this[_0x53c0d1(0x83)]['get'](_0x75ebb4[_0x53c0d1(0x99)])['connect']();}[_0x219183(0x96)](){const _0x4e62c6=_0x219183;this['_injector'][_0x4e62c6(0x98)](_0x75ebb4[_0x4e62c6(0x99)])[_0x4e62c6(0x7c)]();}}_0x2dec25[_0x219183(0x8e)][_0x219183(0x69)](_0x4a6ee4);}));function _0x13bd(_0x161b9d,_0x476625){const _0x9e8ba8=_0x9e8b();return _0x13bd=function(_0x13bd99,_0x4f5ad4){_0x13bd99=_0x13bd99-0x68;let _0xd7ddbc=_0x9e8ba8[_0x13bd99];return _0xd7ddbc;},_0x13bd(_0x161b9d,_0x476625);}function _0x9e8b(){const _0x769ac=['get','MCPConnectionController','5779970njHqtA','MCPEventId','extend','6723144OYLEpy','connectMCP','data','validateToolCall','function','@univerjs/core/facade','UniverCoreFacade','_registerMCPFacadeEvents','FEventName','651569PRVvcH','_initialize','object','8FQdeOG','2SUHcra','McpToolCallFailed','MCPEventService','5142136lpciqn','2429316aylLoV','disconnect','@univerjs-pro/mcp','toDisposable','validateMCPToolCall','fireEvent','McpToolCallReceived','getConnectionStatus','_injector','getMCPConnectionStatus','UniverCore','@univerjs/core','McpConnectionStatusChanged','744060igotii','callMCPTool','McpToolCallExecuted','2139012qBirAJ','event$','type','FUniver','IMCPToolRegistry','executeTool','Event','subscribe','registerEventHandler','amd','UniverProMcp','disconnectMCP','getAllMCPTools'];_0x9e8b=function(){return _0x769ac;};return _0x9e8b();}