mcp-use 1.5.0-canary.6 → 1.5.0-canary.7
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.
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.js +20 -20
- package/dist/src/browser.js +7 -7
- package/dist/src/server/index.cjs +282 -258
- package/dist/src/server/index.js +282 -258
- package/dist/src/server/mcp-server.d.ts +22 -8
- package/dist/src/server/mcp-server.d.ts.map +1 -1
- package/dist/src/server/types/common.d.ts +26 -0
- package/dist/src/server/types/common.d.ts.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -3,26 +3,6 @@ import {
|
|
|
3
3
|
streamEventsToAISDK,
|
|
4
4
|
streamEventsToAISDKWithTools
|
|
5
5
|
} from "./chunk-EW4MJSHA.js";
|
|
6
|
-
import "./chunk-ZFZPZ4GE.js";
|
|
7
|
-
import {
|
|
8
|
-
AcquireActiveMCPServerTool,
|
|
9
|
-
AddMCPServerFromConfigTool,
|
|
10
|
-
BaseAdapter,
|
|
11
|
-
ConnectMCPServerTool,
|
|
12
|
-
LangChainAdapter,
|
|
13
|
-
ListMCPServersTool,
|
|
14
|
-
MCPAgent,
|
|
15
|
-
ObservabilityManager,
|
|
16
|
-
ReleaseMCPServerConnectionTool,
|
|
17
|
-
RemoteAgent,
|
|
18
|
-
ServerManager,
|
|
19
|
-
Telemetry,
|
|
20
|
-
setTelemetrySource
|
|
21
|
-
} from "./chunk-MCF5P6GJ.js";
|
|
22
|
-
import {
|
|
23
|
-
CodeModeConnector,
|
|
24
|
-
PROMPTS
|
|
25
|
-
} from "./chunk-2AOGMX4T.js";
|
|
26
6
|
import {
|
|
27
7
|
ErrorBoundary,
|
|
28
8
|
Image,
|
|
@@ -44,6 +24,26 @@ import {
|
|
|
44
24
|
WebSocketConnector,
|
|
45
25
|
onMcpAuthorization
|
|
46
26
|
} from "./chunk-BWOTID2D.js";
|
|
27
|
+
import "./chunk-ZFZPZ4GE.js";
|
|
28
|
+
import {
|
|
29
|
+
AcquireActiveMCPServerTool,
|
|
30
|
+
AddMCPServerFromConfigTool,
|
|
31
|
+
BaseAdapter,
|
|
32
|
+
ConnectMCPServerTool,
|
|
33
|
+
LangChainAdapter,
|
|
34
|
+
ListMCPServersTool,
|
|
35
|
+
MCPAgent,
|
|
36
|
+
ObservabilityManager,
|
|
37
|
+
ReleaseMCPServerConnectionTool,
|
|
38
|
+
RemoteAgent,
|
|
39
|
+
ServerManager,
|
|
40
|
+
Telemetry,
|
|
41
|
+
setTelemetrySource
|
|
42
|
+
} from "./chunk-MCF5P6GJ.js";
|
|
43
|
+
import {
|
|
44
|
+
CodeModeConnector,
|
|
45
|
+
PROMPTS
|
|
46
|
+
} from "./chunk-2AOGMX4T.js";
|
|
47
47
|
import {
|
|
48
48
|
BaseConnector
|
|
49
49
|
} from "./chunk-2JBWOW4S.js";
|
package/dist/src/browser.js
CHANGED
|
@@ -3,13 +3,6 @@ import {
|
|
|
3
3
|
streamEventsToAISDK,
|
|
4
4
|
streamEventsToAISDKWithTools
|
|
5
5
|
} from "../chunk-EW4MJSHA.js";
|
|
6
|
-
import {
|
|
7
|
-
BaseAdapter,
|
|
8
|
-
LangChainAdapter,
|
|
9
|
-
MCPAgent,
|
|
10
|
-
ObservabilityManager,
|
|
11
|
-
RemoteAgent
|
|
12
|
-
} from "../chunk-MCF5P6GJ.js";
|
|
13
6
|
import {
|
|
14
7
|
BrowserMCPClient,
|
|
15
8
|
BrowserOAuthClientProvider,
|
|
@@ -18,6 +11,13 @@ import {
|
|
|
18
11
|
WebSocketConnector,
|
|
19
12
|
onMcpAuthorization
|
|
20
13
|
} from "../chunk-BWOTID2D.js";
|
|
14
|
+
import {
|
|
15
|
+
BaseAdapter,
|
|
16
|
+
LangChainAdapter,
|
|
17
|
+
MCPAgent,
|
|
18
|
+
ObservabilityManager,
|
|
19
|
+
RemoteAgent
|
|
20
|
+
} from "../chunk-MCF5P6GJ.js";
|
|
21
21
|
import {
|
|
22
22
|
BaseConnector
|
|
23
23
|
} from "../chunk-2JBWOW4S.js";
|