veryfront 0.1.144 → 0.1.145
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/esm/deno.js +1 -1
- package/esm/src/agent/ag-ui-handler.d.ts +77 -0
- package/esm/src/agent/ag-ui-handler.d.ts.map +1 -0
- package/esm/src/agent/ag-ui-handler.js +331 -0
- package/esm/src/agent/index.d.ts +2 -1
- package/esm/src/agent/index.d.ts.map +1 -1
- package/esm/src/agent/index.js +2 -1
- package/esm/src/agent/runtime/index.d.ts +2 -0
- package/esm/src/agent/runtime/index.d.ts.map +1 -1
- package/esm/src/agent/runtime/index.js +15 -7
- package/esm/src/agent/runtime/resume-session.d.ts +61 -0
- package/esm/src/agent/runtime/resume-session.d.ts.map +1 -0
- package/esm/src/agent/runtime/resume-session.js +232 -0
- package/esm/src/agent/runtime/tool-helpers.d.ts +4 -2
- package/esm/src/agent/runtime/tool-helpers.d.ts.map +1 -1
- package/esm/src/agent/runtime/tool-helpers.js +57 -4
- package/esm/src/agent/types.d.ts +2 -1
- package/esm/src/agent/types.d.ts.map +1 -1
- package/esm/src/internal-agents/session-manager.d.ts +8 -24
- package/esm/src/internal-agents/session-manager.d.ts.map +1 -1
- package/esm/src/internal-agents/session-manager.js +55 -178
- package/esm/src/mcp/index.d.ts +2 -0
- package/esm/src/mcp/index.d.ts.map +1 -1
- package/esm/src/mcp/index.js +2 -0
- package/esm/src/mcp/server.d.ts +1 -0
- package/esm/src/mcp/server.d.ts.map +1 -1
- package/esm/src/mcp/server.js +47 -8
- package/esm/src/mcp/session.d.ts +9 -0
- package/esm/src/mcp/session.d.ts.map +1 -0
- package/esm/src/mcp/session.js +25 -0
- package/esm/src/mcp/sse.d.ts +8 -0
- package/esm/src/mcp/sse.d.ts.map +1 -0
- package/esm/src/mcp/sse.js +17 -0
- package/esm/src/platform/cloud/resolver.d.ts.map +1 -1
- package/esm/src/platform/cloud/resolver.js +13 -3
- package/esm/src/provider/index.d.ts +2 -0
- package/esm/src/provider/index.d.ts.map +1 -1
- package/esm/src/provider/index.js +1 -0
- package/esm/src/provider/veryfront-cloud/context.d.ts +10 -0
- package/esm/src/provider/veryfront-cloud/context.d.ts.map +1 -0
- package/esm/src/provider/veryfront-cloud/context.js +11 -0
- package/esm/src/tool/index.d.ts +3 -1
- package/esm/src/tool/index.d.ts.map +1 -1
- package/esm/src/tool/index.js +1 -0
- package/esm/src/tool/remote-mcp.d.ts +14 -0
- package/esm/src/tool/remote-mcp.d.ts.map +1 -0
- package/esm/src/tool/remote-mcp.js +176 -0
- package/esm/src/tool/types.d.ts +12 -0
- package/esm/src/tool/types.d.ts.map +1 -1
- package/esm/src/utils/version-constant.d.ts +1 -1
- package/esm/src/utils/version-constant.js +1 -1
- package/package.json +1 -1
- package/src/deno.js +1 -1
- package/src/src/agent/ag-ui-handler.ts +451 -0
- package/src/src/agent/index.ts +21 -1
- package/src/src/agent/runtime/index.ts +28 -3
- package/src/src/agent/runtime/resume-session.ts +319 -0
- package/src/src/agent/runtime/tool-helpers.ts +89 -6
- package/src/src/agent/types.ts +2 -1
- package/src/src/internal-agents/session-manager.ts +69 -243
- package/src/src/mcp/index.ts +3 -0
- package/src/src/mcp/server.ts +54 -9
- package/src/src/mcp/session.ts +31 -0
- package/src/src/mcp/sse.ts +19 -0
- package/src/src/platform/cloud/resolver.ts +15 -3
- package/src/src/provider/index.ts +5 -0
- package/src/src/provider/veryfront-cloud/context.ts +28 -0
- package/src/src/tool/index.ts +9 -1
- package/src/src/tool/remote-mcp.ts +261 -0
- package/src/src/tool/types.ts +17 -0
- package/src/src/utils/version-constant.ts +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as dntShim from "../../_dnt.shims.js";
|
|
2
|
+
import type { RemoteToolSource, ToolExecutionContext } from "./types.js";
|
|
3
|
+
type ResolvableValue<T> = T | ((context?: ToolExecutionContext) => T | Promise<T>);
|
|
4
|
+
export interface RemoteMCPToolSourceConfig {
|
|
5
|
+
id?: string;
|
|
6
|
+
endpoint: ResolvableValue<string>;
|
|
7
|
+
headers?: ResolvableValue<dntShim.HeadersInit | undefined>;
|
|
8
|
+
fetch?: typeof dntShim.fetch;
|
|
9
|
+
listMethod?: string;
|
|
10
|
+
callMethod?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare function createRemoteMCPToolSource(config: RemoteMCPToolSourceConfig): RemoteToolSource;
|
|
13
|
+
export {};
|
|
14
|
+
//# sourceMappingURL=remote-mcp.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"remote-mcp.d.ts","sourceRoot":"","sources":["../../../src/src/tool/remote-mcp.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,qBAAqB,CAAC;AAG/C,OAAO,KAAK,EAAE,gBAAgB,EAAkB,oBAAoB,EAAE,MAAM,YAAY,CAAC;AAEzF,KAAK,eAAe,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,EAAE,oBAAoB,KAAK,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC;AAEnF,MAAM,WAAW,yBAAyB;IACxC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,eAAe,CAAC,MAAM,CAAC,CAAC;IAClC,OAAO,CAAC,EAAE,eAAe,CAAC,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IAC3D,KAAK,CAAC,EAAE,OAAO,OAAO,CAAC,KAAK,CAAC;IAC7B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAuMD,wBAAgB,yBAAyB,CACvC,MAAM,EAAE,yBAAyB,GAChC,gBAAgB,CA6ClB"}
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
import * as dntShim from "../../_dnt.shims.js";
|
|
2
|
+
function isRecord(value) {
|
|
3
|
+
return typeof value === "object" && value !== null;
|
|
4
|
+
}
|
|
5
|
+
function isResolver(value) {
|
|
6
|
+
return typeof value === "function";
|
|
7
|
+
}
|
|
8
|
+
function isToolAnnotations(value) {
|
|
9
|
+
if (!isRecord(value))
|
|
10
|
+
return false;
|
|
11
|
+
for (const key of Object.keys(value)) {
|
|
12
|
+
if (key !== "readOnlyHint" &&
|
|
13
|
+
key !== "destructiveHint" &&
|
|
14
|
+
key !== "idempotentHint" &&
|
|
15
|
+
key !== "openWorldHint") {
|
|
16
|
+
return false;
|
|
17
|
+
}
|
|
18
|
+
const entry = value[key];
|
|
19
|
+
if (entry !== undefined && typeof entry !== "boolean") {
|
|
20
|
+
return false;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
return true;
|
|
24
|
+
}
|
|
25
|
+
function normalizeParameters(inputSchema) {
|
|
26
|
+
if (!isRecord(inputSchema) || Object.keys(inputSchema).length === 0) {
|
|
27
|
+
return { type: "object", properties: {} };
|
|
28
|
+
}
|
|
29
|
+
return inputSchema;
|
|
30
|
+
}
|
|
31
|
+
function normalizeToolDefinitions(result) {
|
|
32
|
+
if (!isRecord(result))
|
|
33
|
+
return [];
|
|
34
|
+
const rawTools = result.tools;
|
|
35
|
+
if (!Array.isArray(rawTools))
|
|
36
|
+
return [];
|
|
37
|
+
const definitions = [];
|
|
38
|
+
for (const entry of rawTools) {
|
|
39
|
+
if (!isRecord(entry))
|
|
40
|
+
continue;
|
|
41
|
+
if (typeof entry.name !== "string" || entry.name.length === 0)
|
|
42
|
+
continue;
|
|
43
|
+
if (typeof entry.description !== "string")
|
|
44
|
+
continue;
|
|
45
|
+
const definition = {
|
|
46
|
+
name: entry.name,
|
|
47
|
+
description: entry.description,
|
|
48
|
+
parameters: normalizeParameters(entry.inputSchema),
|
|
49
|
+
};
|
|
50
|
+
if (typeof entry.title === "string" && entry.title.length > 0) {
|
|
51
|
+
definition.title = entry.title;
|
|
52
|
+
}
|
|
53
|
+
if (isToolAnnotations(entry.annotations)) {
|
|
54
|
+
definition.annotations = entry.annotations;
|
|
55
|
+
}
|
|
56
|
+
definitions.push(definition);
|
|
57
|
+
}
|
|
58
|
+
return definitions;
|
|
59
|
+
}
|
|
60
|
+
function joinCallToolText(content) {
|
|
61
|
+
return content
|
|
62
|
+
.map((item) => (typeof item.text === "string" ? item.text : ""))
|
|
63
|
+
.filter((item) => item.length > 0)
|
|
64
|
+
.join("\n");
|
|
65
|
+
}
|
|
66
|
+
function parseJsonText(text) {
|
|
67
|
+
try {
|
|
68
|
+
return JSON.parse(text);
|
|
69
|
+
}
|
|
70
|
+
catch {
|
|
71
|
+
return undefined;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
function extractJsonRpcErrorMessage(payload) {
|
|
75
|
+
const rawError = payload.error;
|
|
76
|
+
if (!isRecord(rawError))
|
|
77
|
+
return "Remote MCP server returned an error";
|
|
78
|
+
const errorObject = rawError;
|
|
79
|
+
if (typeof errorObject.message === "string" && errorObject.message.length > 0) {
|
|
80
|
+
return errorObject.message;
|
|
81
|
+
}
|
|
82
|
+
if (typeof errorObject.data === "string" && errorObject.data.length > 0) {
|
|
83
|
+
return errorObject.data;
|
|
84
|
+
}
|
|
85
|
+
if (isRecord(errorObject.data) && typeof errorObject.data.detail === "string") {
|
|
86
|
+
return errorObject.data.detail;
|
|
87
|
+
}
|
|
88
|
+
return "Remote MCP server returned an error";
|
|
89
|
+
}
|
|
90
|
+
async function resolveValue(value, context) {
|
|
91
|
+
if (isResolver(value)) {
|
|
92
|
+
return await value(context);
|
|
93
|
+
}
|
|
94
|
+
return value;
|
|
95
|
+
}
|
|
96
|
+
async function resolveHeaders(headers, context) {
|
|
97
|
+
const resolvedHeaders = headers ? await resolveValue(headers, context) : undefined;
|
|
98
|
+
const finalHeaders = new dntShim.Headers(resolvedHeaders);
|
|
99
|
+
finalHeaders.set("Content-Type", "application/json");
|
|
100
|
+
return finalHeaders;
|
|
101
|
+
}
|
|
102
|
+
async function postJsonRpc(endpoint, headers, body, fetchImpl) {
|
|
103
|
+
const response = await fetchImpl(endpoint, {
|
|
104
|
+
method: "POST",
|
|
105
|
+
headers,
|
|
106
|
+
body: JSON.stringify(body),
|
|
107
|
+
});
|
|
108
|
+
if (!response.ok) {
|
|
109
|
+
const detail = await response.text();
|
|
110
|
+
throw new Error(`Remote MCP request failed (${response.status})${detail ? `: ${detail}` : ""}`);
|
|
111
|
+
}
|
|
112
|
+
return await response.json();
|
|
113
|
+
}
|
|
114
|
+
function getJsonRpcResult(payload) {
|
|
115
|
+
if (!isRecord(payload)) {
|
|
116
|
+
throw new Error("Remote MCP response was not a JSON object");
|
|
117
|
+
}
|
|
118
|
+
if ("error" in payload) {
|
|
119
|
+
throw new Error(extractJsonRpcErrorMessage(payload));
|
|
120
|
+
}
|
|
121
|
+
if (!("result" in payload)) {
|
|
122
|
+
throw new Error("Remote MCP response did not include a result");
|
|
123
|
+
}
|
|
124
|
+
return payload.result;
|
|
125
|
+
}
|
|
126
|
+
function normalizeCallToolResult(result) {
|
|
127
|
+
if (!isRecord(result))
|
|
128
|
+
return result;
|
|
129
|
+
const rawContent = result.content;
|
|
130
|
+
if (Array.isArray(rawContent)) {
|
|
131
|
+
const text = joinCallToolText(rawContent.filter((item) => isRecord(item)));
|
|
132
|
+
if (result.isError === true) {
|
|
133
|
+
return parseJsonText(text) ?? { error: "tool_error", message: text };
|
|
134
|
+
}
|
|
135
|
+
if ("structuredContent" in result) {
|
|
136
|
+
return result.structuredContent;
|
|
137
|
+
}
|
|
138
|
+
return parseJsonText(text) ?? text;
|
|
139
|
+
}
|
|
140
|
+
if ("structuredContent" in result) {
|
|
141
|
+
return result.structuredContent;
|
|
142
|
+
}
|
|
143
|
+
return result;
|
|
144
|
+
}
|
|
145
|
+
export function createRemoteMCPToolSource(config) {
|
|
146
|
+
const id = config.id ?? "remote-mcp";
|
|
147
|
+
const listMethod = config.listMethod ?? "tools/list";
|
|
148
|
+
const callMethod = config.callMethod ?? "tools/call";
|
|
149
|
+
return {
|
|
150
|
+
id,
|
|
151
|
+
async listTools(context) {
|
|
152
|
+
const endpoint = await resolveValue(config.endpoint, context);
|
|
153
|
+
const headers = await resolveHeaders(config.headers, context);
|
|
154
|
+
const payload = await postJsonRpc(endpoint, headers, {
|
|
155
|
+
jsonrpc: "2.0",
|
|
156
|
+
id: `${id}:tools:list`,
|
|
157
|
+
method: listMethod,
|
|
158
|
+
}, config.fetch ?? dntShim.dntGlobalThis.fetch);
|
|
159
|
+
return normalizeToolDefinitions(getJsonRpcResult(payload));
|
|
160
|
+
},
|
|
161
|
+
async executeTool(toolName, args, context) {
|
|
162
|
+
const endpoint = await resolveValue(config.endpoint, context);
|
|
163
|
+
const headers = await resolveHeaders(config.headers, context);
|
|
164
|
+
const payload = await postJsonRpc(endpoint, headers, {
|
|
165
|
+
jsonrpc: "2.0",
|
|
166
|
+
id: `${id}:tools:call:${toolName}`,
|
|
167
|
+
method: callMethod,
|
|
168
|
+
params: {
|
|
169
|
+
name: toolName,
|
|
170
|
+
arguments: args,
|
|
171
|
+
},
|
|
172
|
+
}, config.fetch ?? dntShim.dntGlobalThis.fetch);
|
|
173
|
+
return normalizeCallToolResult(getJsonRpcResult(payload));
|
|
174
|
+
},
|
|
175
|
+
};
|
|
176
|
+
}
|
package/esm/src/tool/types.d.ts
CHANGED
|
@@ -96,6 +96,18 @@ export interface ToolDefinition {
|
|
|
96
96
|
name: string;
|
|
97
97
|
description: string;
|
|
98
98
|
parameters: JsonSchema;
|
|
99
|
+
title?: string;
|
|
100
|
+
annotations?: ToolAnnotations;
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* Remote tool source loaded dynamically at runtime.
|
|
104
|
+
* Hosts can provide these to expose tools from remote MCP-compatible systems
|
|
105
|
+
* without registering those tools globally inside the framework.
|
|
106
|
+
*/
|
|
107
|
+
export interface RemoteToolSource {
|
|
108
|
+
id: string;
|
|
109
|
+
listTools(context?: ToolExecutionContext): Promise<ToolDefinition[]>;
|
|
110
|
+
executeTool(toolName: string, args: Record<string, unknown>, context?: ToolExecutionContext): Promise<unknown>;
|
|
99
111
|
}
|
|
100
112
|
export {};
|
|
101
113
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/src/tool/types.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAC7B,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAE7D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAEvD;;GAEG;AAEH,MAAM,WAAW,UAAU,CAAC,MAAM,GAAG,GAAG,EAAE,OAAO,GAAG,GAAG;IACrD,yDAAyD;IACzD,EAAE,CAAC,EAAE,MAAM,CAAC;IAEZ,wCAAwC;IACxC,WAAW,EAAE,MAAM,CAAC;IAEpB,gCAAgC;IAChC,WAAW,EAAE,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;IAEjC;;;OAGG;IACH,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAE7B;;OAEG;IACH,OAAO,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,oBAAoB,KAAK,OAAO,CAAC,OAAO,CAAC,GAAG,OAAO,CAAC;IAEvF,wBAAwB;IACxB,GAAG,CAAC,EAAE;QACJ,qBAAqB;QACrB,OAAO,CAAC,EAAE,OAAO,CAAC;QAElB,6BAA6B;QAC7B,YAAY,CAAC,EAAE,OAAO,CAAC;QAEvB,mBAAmB;QACnB,WAAW,CAAC,EAAE,UAAU,GAAG,OAAO,GAAG,aAAa,CAAC;QAEnD,uCAAuC;QACvC,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,oDAAoD;QACpD,WAAW,CAAC,EAAE,eAAe,CAAC;KAC/B,CAAC;CACH;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,gDAAgD;IAChD,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,4DAA4D;IAC5D,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,2EAA2E;IAC3E,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,yBAAyB;IACzB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;IACvB,sDAAsD;IACtD,WAAW,CAAC,EAAE,WAAW,CAAC;CAC3B;AAED;;;;GAIG;AACH,KAAK,QAAQ,GAAG,UAAU,GAAG,SAAS,CAAC;AAEvC;;GAEG;AAEH,MAAM,WAAW,IAAI,CAAC,MAAM,GAAG,GAAG,EAAE,OAAO,GAAG,GAAG;IAC/C,cAAc;IACd,EAAE,EAAE,MAAM,CAAC;IACX,2FAA2F;IAC3F,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAEhC;;;;OAIG;IACH,IAAI,EAAE,QAAQ,CAAC;IAEf,uBAAuB;IACvB,WAAW,EAAE,MAAM,CAAC;IAEpB,yBAAyB;IACzB,WAAW,EAAE,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;IAEjC;;;OAGG;IACH,eAAe,CAAC,EAAE,UAAU,CAAC;IAE7B;;OAEG;IACH,OAAO,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,oBAAoB,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC;IAE7E,wBAAwB;IACxB,GAAG,CAAC,EAAE,UAAU,CAAC,KAAK,CAAC,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/src/tool/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.
|
|
1
|
+
export declare const VERSION = "0.1.145";
|
|
2
2
|
//# sourceMappingURL=version-constant.d.ts.map
|
package/package.json
CHANGED