skybridge 0.0.1 → 0.1.0
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/LICENSE +674 -0
- package/README.md +124 -1
- package/dist/src/server/index.d.ts +2 -0
- package/dist/src/server/index.js +3 -0
- package/dist/src/server/index.js.map +1 -0
- package/dist/src/server/server.d.ts +12 -0
- package/dist/src/server/server.js +45 -0
- package/dist/src/server/server.js.map +1 -0
- package/dist/src/server/templateHelper.d.ts +14 -0
- package/dist/src/server/templateHelper.js +37 -0
- package/dist/src/server/templateHelper.js.map +1 -0
- package/dist/src/server/templates/development.hbs +11 -0
- package/dist/src/server/templates/production.hbs +5 -0
- package/dist/src/server/widgetsDevServer.d.ts +12 -0
- package/dist/src/server/widgetsDevServer.js +39 -0
- package/dist/src/server/widgetsDevServer.js.map +1 -0
- package/dist/src/test/setup.d.ts +1 -0
- package/dist/src/test/setup.js +9 -0
- package/dist/src/test/setup.js.map +1 -0
- package/dist/src/test/utils.d.ts +28 -0
- package/dist/src/test/utils.js +43 -0
- package/dist/src/test/utils.js.map +1 -0
- package/dist/src/test/widget.test.d.ts +1 -0
- package/dist/src/test/widget.test.js +69 -0
- package/dist/src/test/widget.test.js.map +1 -0
- package/dist/src/web/index.d.ts +5 -0
- package/dist/src/web/index.js +6 -0
- package/dist/src/web/index.js.map +1 -0
- package/dist/src/web/mount-widget.d.ts +1 -0
- package/dist/src/web/mount-widget.js +14 -0
- package/dist/src/web/mount-widget.js.map +1 -0
- package/dist/src/web/plugin.d.ts +2 -0
- package/dist/src/web/plugin.js +30 -0
- package/dist/src/web/plugin.js.map +1 -0
- package/dist/src/web/types.d.ts +95 -0
- package/dist/src/web/types.js +10 -0
- package/dist/src/web/types.js.map +1 -0
- package/dist/src/web/use-openai-global.d.ts +2 -0
- package/dist/src/web/use-openai-global.js +21 -0
- package/dist/src/web/use-openai-global.js.map +1 -0
- package/dist/src/web/use-tool-output.d.ts +3 -0
- package/dist/src/web/use-tool-output.js +5 -0
- package/dist/src/web/use-tool-output.js.map +1 -0
- package/dist/vitest.config.d.ts +2 -0
- package/dist/vitest.config.js +9 -0
- package/dist/vitest.config.js.map +1 -0
- package/package.json +45 -7
package/README.md
CHANGED
|
@@ -1,3 +1,126 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
1
3
|
# Skybridge
|
|
2
4
|
|
|
3
|
-
Skybridge is
|
|
5
|
+
**Skybridge is the TypeScript framework for building ChatGPT apps**
|
|
6
|
+
|
|
7
|
+
[](https://alpic.ai)
|
|
8
|
+
|
|
9
|
+

|
|
10
|
+

|
|
11
|
+

|
|
12
|
+
|
|
13
|
+
</div>
|
|
14
|
+
|
|
15
|
+
Skybridge comes with 2 packages:
|
|
16
|
+
|
|
17
|
+
- `skybridge/server`: A drop-in replacement of the `@modelcontextprotocol/sdk` official `McpServer` class with extra features for widget development.
|
|
18
|
+
- `skybridge/web`: A react library with hooks and components to build widgets on the underlying _OpenAI iFrame skybridge_ runtime.
|
|
19
|
+
|
|
20
|
+
## Quick start
|
|
21
|
+
|
|
22
|
+
To get started in less than a minute, you can [create a new repository](https://github.com/new?template_name=apps-sdk-template&template_owner=alpic-ai) using our [ChatGPT SDK template](https://github.com/alpic-ai/apps-sdk-template). This template includes a basic setup for both the server and the widgets.
|
|
23
|
+
|
|
24
|
+
## Installation
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
pnpm add skybridge
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Concepts
|
|
31
|
+
|
|
32
|
+
### Widgets
|
|
33
|
+
|
|
34
|
+
> A widget is a UI component that turns structured tool results into a human-friendly UI. Those are built using React components. They are rendered inside an iframe inline with the conversation on ChatGPT.
|
|
35
|
+
|
|
36
|
+
Each widget in your app must have a unique name. The name is used to bridge the tool invocation result with the widget React component.
|
|
37
|
+
|
|
38
|
+
For example, in order to register a new widget named `pokemon` on your ChatGPT app. You should have the following file structure and file contents:
|
|
39
|
+
|
|
40
|
+
_Project structure_
|
|
41
|
+
|
|
42
|
+
```
|
|
43
|
+
server/
|
|
44
|
+
└── src/
|
|
45
|
+
└── index.ts // Register the widget with McpServer.widget()
|
|
46
|
+
web/
|
|
47
|
+
└── src/
|
|
48
|
+
└── widgets/
|
|
49
|
+
└── pokemon.tsx // Use the same widget name as the file name
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
_server/src/index.ts_
|
|
53
|
+
|
|
54
|
+
```ts
|
|
55
|
+
import { McpServer } from "skybridge/server";
|
|
56
|
+
|
|
57
|
+
const server = new McpServer();
|
|
58
|
+
|
|
59
|
+
server.widget(
|
|
60
|
+
"pokemon"
|
|
61
|
+
// Remaining arguments...
|
|
62
|
+
);
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
_web/src/widgets/pokemon.tsx_
|
|
66
|
+
|
|
67
|
+
```ts
|
|
68
|
+
import { mountWidget } from "skybridge/web";
|
|
69
|
+
|
|
70
|
+
const Pokemon: React.FunctionComponent = () => {
|
|
71
|
+
// Your React component code goes here...
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
mountWidget(<Pokemon />);
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
## Packages
|
|
78
|
+
|
|
79
|
+
### skybridge/server
|
|
80
|
+
|
|
81
|
+
The `skybridge/server` package is a drop-in replacement of the `@modelcontextprotocol/sdk` official `McpServer` class with extra features for widget development. If you're already using the `@modelcontextprotocol/sdk`, you can simply replace your `McpServer` import with `skybridge/server` and you're good to go.
|
|
82
|
+
|
|
83
|
+
### skybridge/web
|
|
84
|
+
|
|
85
|
+
The `skybridge/web` package is a react library with hooks and components to build widgets on the underlying _OpenAI iFrame skybridge_ runtime.
|
|
86
|
+
|
|
87
|
+
**Vite plugin**
|
|
88
|
+
|
|
89
|
+
The `skybridge/web` package comes with a Vite plugin that allows you to build your widgets as regular Vite apps.
|
|
90
|
+
|
|
91
|
+
```ts
|
|
92
|
+
import { defineConfig } from "vite";
|
|
93
|
+
import { skybridge } from "skybridge/web";
|
|
94
|
+
|
|
95
|
+
export default defineConfig({
|
|
96
|
+
plugins: [skybridge()],
|
|
97
|
+
});
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
**Hooks**
|
|
101
|
+
|
|
102
|
+
The `skybridge/web` package comes with a set of hooks to help you build your widgets.
|
|
103
|
+
|
|
104
|
+
```ts
|
|
105
|
+
import { useToolOutput } from "skybridge/web";
|
|
106
|
+
|
|
107
|
+
// Initial data returned by the tool invocation on structuredOutput
|
|
108
|
+
const toolOutput = useToolOutput();
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
## Migrate your existing MCP server to a ChatGPT app
|
|
112
|
+
|
|
113
|
+
If you're already using the `@modelcontextprotocol/sdk` to build a MCP server, you can migrate to a ChatGPT app by following these steps:
|
|
114
|
+
|
|
115
|
+
1. Replace your `McpServer` import from `@modelcontextprotocol/sdk` with the same import from `skybridge/server`
|
|
116
|
+
2. Create a new vite project in a folder named `web` and install the `skybridge` package
|
|
117
|
+
3. Replace the `vite.config.ts` file with the following:
|
|
118
|
+
|
|
119
|
+
```ts
|
|
120
|
+
import { defineConfig } from "vite";
|
|
121
|
+
import { skybridge } from "skybridge/web";
|
|
122
|
+
|
|
123
|
+
export default defineConfig({
|
|
124
|
+
plugins: [skybridge()],
|
|
125
|
+
});
|
|
126
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/server/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { McpServer as McpServerBase, type ToolCallback } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
2
|
+
import type { Resource } from "@modelcontextprotocol/sdk/types.js";
|
|
3
|
+
import type { ZodRawShape } from "zod";
|
|
4
|
+
type McpServerOriginalResourceConfig = Omit<Resource, "uri" | "name" | "mimeType">;
|
|
5
|
+
type McpServerOriginalToolConfig = Omit<Parameters<McpServer["registerTool"]>[1], "inputSchema" | "outputSchema">;
|
|
6
|
+
export declare class McpServer extends McpServerBase {
|
|
7
|
+
widget<InputArgs extends ZodRawShape, OutputArgs extends ZodRawShape>(name: string, resourceConfig: McpServerOriginalResourceConfig, toolConfig: McpServerOriginalToolConfig & {
|
|
8
|
+
inputSchema?: InputArgs;
|
|
9
|
+
outputSchema?: OutputArgs;
|
|
10
|
+
}, toolCallback: ToolCallback<InputArgs>): void;
|
|
11
|
+
}
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { McpServer as McpServerBase, } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
2
|
+
import { templateHelper } from "./templateHelper.js";
|
|
3
|
+
export class McpServer extends McpServerBase {
|
|
4
|
+
widget(name, resourceConfig, toolConfig, toolCallback) {
|
|
5
|
+
const uri = `ui://widgets/${name}.html`;
|
|
6
|
+
const resourceMetadata = { ...(resourceConfig._meta ?? {}) };
|
|
7
|
+
if (toolConfig.description !== undefined) {
|
|
8
|
+
resourceMetadata["openai/widgetDescription"] = toolConfig.description;
|
|
9
|
+
}
|
|
10
|
+
this.resource(name, uri, {
|
|
11
|
+
...resourceConfig,
|
|
12
|
+
_meta: resourceMetadata,
|
|
13
|
+
}, async (_uri, extra) => {
|
|
14
|
+
const serverUrl = process.env.NODE_ENV === "production"
|
|
15
|
+
? `https://${extra?.requestInfo?.headers?.["x-forwarded-host"] ??
|
|
16
|
+
extra?.requestInfo?.headers?.host}`
|
|
17
|
+
: `http://localhost:3000`;
|
|
18
|
+
const templateData = {
|
|
19
|
+
serverUrl,
|
|
20
|
+
widgetName: name,
|
|
21
|
+
};
|
|
22
|
+
const html = process.env.NODE_ENV === "production"
|
|
23
|
+
? templateHelper.renderProduction(templateData)
|
|
24
|
+
: templateHelper.renderDevelopment(templateData);
|
|
25
|
+
return {
|
|
26
|
+
contents: [
|
|
27
|
+
{
|
|
28
|
+
uri,
|
|
29
|
+
mimeType: "text/html+skybridge",
|
|
30
|
+
text: html,
|
|
31
|
+
},
|
|
32
|
+
],
|
|
33
|
+
};
|
|
34
|
+
});
|
|
35
|
+
const toolMeta = {
|
|
36
|
+
...toolConfig._meta,
|
|
37
|
+
"openai/outputTemplate": uri,
|
|
38
|
+
};
|
|
39
|
+
this.registerTool(name, {
|
|
40
|
+
...toolConfig,
|
|
41
|
+
_meta: toolMeta,
|
|
42
|
+
}, toolCallback);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
//# sourceMappingURL=server.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server.js","sourceRoot":"","sources":["../../../src/server/server.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,SAAS,IAAI,aAAa,GAE3B,MAAM,yCAAyC,CAAC;AAGjD,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AA4BrD,MAAM,OAAO,SAAU,SAAQ,aAAa;IAC1C,MAAM,CACJ,IAAY,EACZ,cAA+C,EAC/C,UAGC,EACD,YAAqC;QAErC,MAAM,GAAG,GAAG,gBAAgB,IAAI,OAAO,CAAC;QACxC,MAAM,gBAAgB,GAAiB,EAAE,GAAG,CAAC,cAAc,CAAC,KAAK,IAAI,EAAE,CAAC,EAAE,CAAC;QAC3E,IAAI,UAAU,CAAC,WAAW,KAAK,SAAS,EAAE,CAAC;YACzC,gBAAgB,CAAC,0BAA0B,CAAC,GAAG,UAAU,CAAC,WAAW,CAAC;QACxE,CAAC;QAED,IAAI,CAAC,QAAQ,CACX,IAAI,EACJ,GAAG,EACH;YACE,GAAG,cAAc;YACjB,KAAK,EAAE,gBAAgB;SACxB,EACD,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE;YACpB,MAAM,SAAS,GACb,OAAO,CAAC,GAAG,CAAC,QAAQ,KAAK,YAAY;gBACnC,CAAC,CAAC,WACE,KAAK,EAAE,WAAW,EAAE,OAAO,EAAE,CAAC,kBAAkB,CAAC;oBACjD,KAAK,EAAE,WAAW,EAAE,OAAO,EAAE,IAC/B,EAAE;gBACJ,CAAC,CAAC,uBAAuB,CAAC;YAE9B,MAAM,YAAY,GAAG;gBACnB,SAAS;gBACT,UAAU,EAAE,IAAI;aACjB,CAAC;YAEF,MAAM,IAAI,GACR,OAAO,CAAC,GAAG,CAAC,QAAQ,KAAK,YAAY;gBACnC,CAAC,CAAC,cAAc,CAAC,gBAAgB,CAAC,YAAY,CAAC;gBAC/C,CAAC,CAAC,cAAc,CAAC,iBAAiB,CAAC,YAAY,CAAC,CAAC;YAErD,OAAO;gBACL,QAAQ,EAAE;oBACR;wBACE,GAAG;wBACH,QAAQ,EAAE,qBAAqB;wBAC/B,IAAI,EAAE,IAAI;qBACX;iBACF;aACF,CAAC;QACJ,CAAC,CACF,CAAC;QAEF,MAAM,QAAQ,GAAa;YACzB,GAAG,UAAU,CAAC,KAAK;YACnB,uBAAuB,EAAE,GAAG;SAC7B,CAAC;QAEF,IAAI,CAAC,YAAY,CACf,IAAI,EACJ;YACE,GAAG,UAAU;YACb,KAAK,EAAE,QAAQ;SAChB,EACD,YAAY,CACb,CAAC;IACJ,CAAC;CACF"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
type TemplateData = {
|
|
2
|
+
serverUrl: string;
|
|
3
|
+
widgetName: string;
|
|
4
|
+
};
|
|
5
|
+
declare class TemplateHelper {
|
|
6
|
+
private templateCache;
|
|
7
|
+
private loadTemplate;
|
|
8
|
+
renderProduction(data: TemplateData): string;
|
|
9
|
+
renderDevelopment(data: TemplateData): string;
|
|
10
|
+
renderViteClient(data: TemplateData): string;
|
|
11
|
+
injectViteClient(html: string, data: TemplateData): string;
|
|
12
|
+
}
|
|
13
|
+
export declare const templateHelper: TemplateHelper;
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import Handlebars from "handlebars";
|
|
2
|
+
import { readFileSync } from "node:fs";
|
|
3
|
+
import { join, dirname } from "node:path";
|
|
4
|
+
import { fileURLToPath } from "node:url";
|
|
5
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
6
|
+
const __dirname = dirname(__filename);
|
|
7
|
+
class TemplateHelper {
|
|
8
|
+
templateCache = new Map();
|
|
9
|
+
loadTemplate(templateName) {
|
|
10
|
+
if (this.templateCache.has(templateName)) {
|
|
11
|
+
return this.templateCache.get(templateName);
|
|
12
|
+
}
|
|
13
|
+
const templatePath = join(__dirname, "templates", `${templateName}.hbs`);
|
|
14
|
+
const templateSource = readFileSync(templatePath, "utf-8");
|
|
15
|
+
const template = Handlebars.compile(templateSource);
|
|
16
|
+
this.templateCache.set(templateName, template);
|
|
17
|
+
return template;
|
|
18
|
+
}
|
|
19
|
+
renderProduction(data) {
|
|
20
|
+
const template = this.loadTemplate("production");
|
|
21
|
+
return template(data);
|
|
22
|
+
}
|
|
23
|
+
renderDevelopment(data) {
|
|
24
|
+
const template = this.loadTemplate("development");
|
|
25
|
+
return template(data);
|
|
26
|
+
}
|
|
27
|
+
renderViteClient(data) {
|
|
28
|
+
const template = this.loadTemplate("vite-client");
|
|
29
|
+
return template(data);
|
|
30
|
+
}
|
|
31
|
+
injectViteClient(html, data) {
|
|
32
|
+
const viteClientScript = this.renderViteClient(data);
|
|
33
|
+
return viteClientScript + html;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
export const templateHelper = new TemplateHelper();
|
|
37
|
+
//# sourceMappingURL=templateHelper.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"templateHelper.js","sourceRoot":"","sources":["../../../src/server/templateHelper.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,YAAY,CAAC;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AACvC,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,MAAM,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAClD,MAAM,SAAS,GAAG,OAAO,CAAC,UAAU,CAAC,CAAC;AAOtC,MAAM,cAAc;IACV,aAAa,GAAG,IAAI,GAAG,EAAsC,CAAC;IAE9D,YAAY,CAAC,YAAoB;QACvC,IAAI,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,YAAY,CAAC,EAAE,CAAC;YACzC,OAAO,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,YAAY,CAAE,CAAC;QAC/C,CAAC;QAED,MAAM,YAAY,GAAG,IAAI,CAAC,SAAS,EAAE,WAAW,EAAE,GAAG,YAAY,MAAM,CAAC,CAAC;QACzE,MAAM,cAAc,GAAG,YAAY,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC;QAC3D,MAAM,QAAQ,GAAG,UAAU,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC;QAEpD,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;QAC/C,OAAO,QAAQ,CAAC;IAClB,CAAC;IAED,gBAAgB,CAAC,IAAkB;QACjC,MAAM,QAAQ,GAAG,IAAI,CAAC,YAAY,CAAC,YAAY,CAAC,CAAC;QACjD,OAAO,QAAQ,CAAC,IAAI,CAAC,CAAC;IACxB,CAAC;IAED,iBAAiB,CAAC,IAAkB;QAClC,MAAM,QAAQ,GAAG,IAAI,CAAC,YAAY,CAAC,aAAa,CAAC,CAAC;QAClD,OAAO,QAAQ,CAAC,IAAI,CAAC,CAAC;IACxB,CAAC;IAED,gBAAgB,CAAC,IAAkB;QACjC,MAAM,QAAQ,GAAG,IAAI,CAAC,YAAY,CAAC,aAAa,CAAC,CAAC;QAClD,OAAO,QAAQ,CAAC,IAAI,CAAC,CAAC;IACxB,CAAC;IAED,gBAAgB,CAAC,IAAY,EAAE,IAAkB;QAC/C,MAAM,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC;QACrD,OAAO,gBAAgB,GAAG,IAAI,CAAC;IACjC,CAAC;CACF;AAED,MAAM,CAAC,MAAM,cAAc,GAAG,IAAI,cAAc,EAAE,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script type="module">
|
|
2
|
+
import { injectIntoGlobalHook } from "{{serverUrl}}/@react-refresh";
|
|
3
|
+
injectIntoGlobalHook(window); window.$RefreshReg$ = () => {};
|
|
4
|
+
window.$RefreshSig$ = () => (type) => type;
|
|
5
|
+
window.__vite_plugin_react_preamble_installed__ = true;
|
|
6
|
+
</script>
|
|
7
|
+
<script type="module" src="{{serverUrl}}/@vite/client"></script>
|
|
8
|
+
<div id="root"></div>
|
|
9
|
+
<script type="module">
|
|
10
|
+
import('{{serverUrl}}/src/widgets/{{widgetName}}.tsx');
|
|
11
|
+
</script>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { type RequestHandler } from "express";
|
|
2
|
+
/**
|
|
3
|
+
* Install Vite dev server
|
|
4
|
+
* This router MUST be installed at the application root, like so:
|
|
5
|
+
*
|
|
6
|
+
* const app = express();
|
|
7
|
+
*
|
|
8
|
+
* if (env.NODE_ENV !== "production") {
|
|
9
|
+
* app.use(await widgetsRouter());
|
|
10
|
+
* }
|
|
11
|
+
*/
|
|
12
|
+
export declare const widgetsDevServer: () => Promise<RequestHandler>;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import express, {} from "express";
|
|
2
|
+
import cors from "cors";
|
|
3
|
+
import path from "node:path";
|
|
4
|
+
/**
|
|
5
|
+
* Install Vite dev server
|
|
6
|
+
* This router MUST be installed at the application root, like so:
|
|
7
|
+
*
|
|
8
|
+
* const app = express();
|
|
9
|
+
*
|
|
10
|
+
* if (env.NODE_ENV !== "production") {
|
|
11
|
+
* app.use(await widgetsRouter());
|
|
12
|
+
* }
|
|
13
|
+
*/
|
|
14
|
+
export const widgetsDevServer = async () => {
|
|
15
|
+
const router = express.Router();
|
|
16
|
+
const { createServer, searchForWorkspaceRoot, loadConfigFromFile } = await import("vite");
|
|
17
|
+
const workspaceRoot = searchForWorkspaceRoot(process.cwd());
|
|
18
|
+
const webAppRoot = path.join(workspaceRoot, "web");
|
|
19
|
+
const configResult = await loadConfigFromFile({ command: "serve", mode: "development" }, path.join(webAppRoot, "vite.config.ts"), webAppRoot);
|
|
20
|
+
// Remove build-specific options that don't apply to dev server
|
|
21
|
+
const { build, preview, ...devConfig } = configResult?.config || {};
|
|
22
|
+
const vite = await createServer({
|
|
23
|
+
...devConfig,
|
|
24
|
+
configFile: false, // Keep this to prevent vite from trying to resolve path in the target config file
|
|
25
|
+
appType: "custom",
|
|
26
|
+
server: {
|
|
27
|
+
allowedHosts: true,
|
|
28
|
+
middlewareMode: true,
|
|
29
|
+
},
|
|
30
|
+
root: webAppRoot,
|
|
31
|
+
optimizeDeps: {
|
|
32
|
+
include: ["react", "react-dom/client"],
|
|
33
|
+
},
|
|
34
|
+
});
|
|
35
|
+
router.use(cors());
|
|
36
|
+
router.use("/", vite.middlewares);
|
|
37
|
+
return router;
|
|
38
|
+
};
|
|
39
|
+
//# sourceMappingURL=widgetsDevServer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widgetsDevServer.js","sourceRoot":"","sources":["../../../src/server/widgetsDevServer.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,EAAE,EAAuB,MAAM,SAAS,CAAC;AACvD,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,IAAI,MAAM,WAAW,CAAC;AAE7B;;;;;;;;;GASG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,KAAK,IAA6B,EAAE;IAClE,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC;IAEhC,MAAM,EAAE,YAAY,EAAE,sBAAsB,EAAE,kBAAkB,EAAE,GAChE,MAAM,MAAM,CAAC,MAAM,CAAC,CAAC;IACvB,MAAM,aAAa,GAAG,sBAAsB,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC;IAC5D,MAAM,UAAU,GAAG,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,KAAK,CAAC,CAAC;IAEnD,MAAM,YAAY,GAAG,MAAM,kBAAkB,CAC3C,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,aAAa,EAAE,EACzC,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,gBAAgB,CAAC,EACvC,UAAU,CACX,CAAC;IAEF,+DAA+D;IAC/D,MAAM,EAAE,KAAK,EAAE,OAAO,EAAE,GAAG,SAAS,EAAE,GAAG,YAAY,EAAE,MAAM,IAAI,EAAE,CAAC;IAEpE,MAAM,IAAI,GAAG,MAAM,YAAY,CAAC;QAC9B,GAAG,SAAS;QACZ,UAAU,EAAE,KAAK,EAAE,kFAAkF;QACrG,OAAO,EAAE,QAAQ;QACjB,MAAM,EAAE;YACN,YAAY,EAAE,IAAI;YAClB,cAAc,EAAE,IAAI;SACrB;QACD,IAAI,EAAE,UAAU;QAChB,YAAY,EAAE;YACZ,OAAO,EAAE,CAAC,OAAO,EAAE,kBAAkB,CAAC;SACvC;KACF,CAAC,CAAC;IAEH,MAAM,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,CAAC;IACnB,MAAM,CAAC,GAAG,CAAC,GAAG,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC;IAElC,OAAO,MAAM,CAAC;AAChB,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"setup.js","sourceRoot":"","sources":["../../../src/test/setup.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,QAAQ,CAAC;AAE5B,+CAA+C;AAC/C,MAAM,CAAC,OAAO,GAAG;IACf,GAAG,OAAO;IACV,KAAK,EAAE,EAAE,CAAC,EAAE,EAAE;IACd,IAAI,EAAE,EAAE,CAAC,EAAE,EAAE;IACb,GAAG,EAAE,EAAE,CAAC,EAAE,EAAE;CACb,CAAC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { type MockInstance } from "vitest";
|
|
2
|
+
import { McpServer } from "../server/server.js";
|
|
3
|
+
/**
|
|
4
|
+
* Creates a real McpServer instance for testing
|
|
5
|
+
*/
|
|
6
|
+
export declare function createMockMcpServer(): {
|
|
7
|
+
server: McpServer;
|
|
8
|
+
mockResource: MockInstance<McpServer["resource"]>;
|
|
9
|
+
mockRegisterTool: MockInstance<McpServer["registerTool"]>;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* Mock extra parameter for resource callback
|
|
13
|
+
*/
|
|
14
|
+
export declare function createMockExtra(host: string): {
|
|
15
|
+
requestInfo: {
|
|
16
|
+
headers: {
|
|
17
|
+
host: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Sets up environment variables for testing
|
|
23
|
+
*/
|
|
24
|
+
export declare function setTestEnv(env: Record<string, string>): void;
|
|
25
|
+
/**
|
|
26
|
+
* Resets environment variables
|
|
27
|
+
*/
|
|
28
|
+
export declare function resetTestEnv(): void;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { vi } from "vitest";
|
|
2
|
+
import { McpServer, McpServer as McpServerBase } from "../server/server.js";
|
|
3
|
+
/**
|
|
4
|
+
* Creates a real McpServer instance for testing
|
|
5
|
+
*/
|
|
6
|
+
export function createMockMcpServer() {
|
|
7
|
+
// Create a real McpServer instance
|
|
8
|
+
const server = new McpServer({
|
|
9
|
+
name: "alpic-openai-app",
|
|
10
|
+
version: "0.0.1",
|
|
11
|
+
}, { capabilities: {} });
|
|
12
|
+
// Mock the underlying methods to track calls
|
|
13
|
+
const mockResource = vi.spyOn(server, "resource");
|
|
14
|
+
const mockRegisterTool = vi.spyOn(server, "registerTool");
|
|
15
|
+
return {
|
|
16
|
+
server,
|
|
17
|
+
mockResource,
|
|
18
|
+
mockRegisterTool,
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Mock extra parameter for resource callback
|
|
23
|
+
*/
|
|
24
|
+
export function createMockExtra(host) {
|
|
25
|
+
return {
|
|
26
|
+
requestInfo: {
|
|
27
|
+
headers: { host },
|
|
28
|
+
},
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Sets up environment variables for testing
|
|
33
|
+
*/
|
|
34
|
+
export function setTestEnv(env) {
|
|
35
|
+
Object.assign(process.env, env);
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Resets environment variables
|
|
39
|
+
*/
|
|
40
|
+
export function resetTestEnv() {
|
|
41
|
+
delete process.env.NODE_ENV;
|
|
42
|
+
}
|
|
43
|
+
//# sourceMappingURL=utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../src/test/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAqB,MAAM,QAAQ,CAAC;AAC/C,OAAO,EAAE,SAAS,EAAE,SAAS,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAE5E;;GAEG;AACH,MAAM,UAAU,mBAAmB;IAKjC,mCAAmC;IACnC,MAAM,MAAM,GAAG,IAAI,SAAS,CAC1B;QACE,IAAI,EAAE,kBAAkB;QACxB,OAAO,EAAE,OAAO;KACjB,EACD,EAAE,YAAY,EAAE,EAAE,EAAE,CACrB,CAAC;IAEF,6CAA6C;IAC7C,MAAM,YAAY,GAAG,EAAE,CAAC,KAAK,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;IAClD,MAAM,gBAAgB,GAAG,EAAE,CAAC,KAAK,CAAC,MAAM,EAAE,cAAc,CAAC,CAAC;IAE1D,OAAO;QACL,MAAM;QACN,YAAY;QACZ,gBAAgB;KACjB,CAAC;AACJ,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,eAAe,CAAC,IAAY;IAC1C,OAAO;QACL,WAAW,EAAE;YACX,OAAO,EAAE,EAAE,IAAI,EAAE;SAClB;KACF,CAAC;AACJ,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,UAAU,CAAC,GAA2B;IACpD,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;AAClC,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,YAAY;IAC1B,OAAO,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC;AAC9B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { describe, it, expect, vi, beforeEach, afterEach, } from "vitest";
|
|
2
|
+
import { McpServer } from "../server/server.js";
|
|
3
|
+
import { createMockMcpServer, createMockExtra, setTestEnv, resetTestEnv, } from "./utils.js";
|
|
4
|
+
describe("McpServer.widget", () => {
|
|
5
|
+
let server;
|
|
6
|
+
let mockResource;
|
|
7
|
+
let mockRegisterTool;
|
|
8
|
+
beforeEach(() => {
|
|
9
|
+
({ server, mockResource, mockRegisterTool } = createMockMcpServer());
|
|
10
|
+
});
|
|
11
|
+
afterEach(() => {
|
|
12
|
+
vi.clearAllMocks();
|
|
13
|
+
resetTestEnv();
|
|
14
|
+
});
|
|
15
|
+
it("should generate correct HTML for development mode", async () => {
|
|
16
|
+
setTestEnv({ NODE_ENV: "development" });
|
|
17
|
+
const mockToolCallback = vi.fn();
|
|
18
|
+
const mockResourceConfig = { description: "Test widget" };
|
|
19
|
+
const mockToolConfig = { description: "Test tool" };
|
|
20
|
+
server.widget("my-widget", mockResourceConfig, mockToolConfig, mockToolCallback);
|
|
21
|
+
// Get the resource callback function
|
|
22
|
+
const resourceCallback = mockResource.mock.calls[0]?.[3];
|
|
23
|
+
expect(resourceCallback).toBeDefined();
|
|
24
|
+
const serverUrl = "http://localhost:3000";
|
|
25
|
+
const mockExtra = createMockExtra("__not_used__");
|
|
26
|
+
const result = await resourceCallback(new URL("ui://widgets/my-widget.html"), mockExtra);
|
|
27
|
+
expect(result).toEqual({
|
|
28
|
+
contents: [
|
|
29
|
+
{
|
|
30
|
+
uri: "ui://widgets/my-widget.html",
|
|
31
|
+
mimeType: "text/html+skybridge",
|
|
32
|
+
text: expect.stringContaining('<div id="root"></div>'),
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
});
|
|
36
|
+
// Check development-specific content
|
|
37
|
+
expect(result.contents[0]?.text).toContain(serverUrl + "/@react-refresh");
|
|
38
|
+
expect(result.contents[0]?.text).toContain(serverUrl + "/@vite/client");
|
|
39
|
+
expect(result.contents[0]?.text).toContain(serverUrl + "/src/widgets/my-widget.tsx");
|
|
40
|
+
});
|
|
41
|
+
it("should generate correct HTML for production mode", async () => {
|
|
42
|
+
setTestEnv({ NODE_ENV: "production" });
|
|
43
|
+
const mockToolCallback = vi.fn();
|
|
44
|
+
const mockResourceConfig = { description: "Test widget" };
|
|
45
|
+
const mockToolConfig = { description: "Test tool" };
|
|
46
|
+
server.widget("my-widget", mockResourceConfig, mockToolConfig, mockToolCallback);
|
|
47
|
+
// Get the resource callback function
|
|
48
|
+
const resourceCallback = mockResource.mock.calls[0]?.[3];
|
|
49
|
+
expect(resourceCallback).toBeDefined();
|
|
50
|
+
const serverUrl = "https://myapp.com";
|
|
51
|
+
const mockExtra = createMockExtra(serverUrl);
|
|
52
|
+
const result = await resourceCallback(new URL("ui://widgets/my-widget.html"), mockExtra);
|
|
53
|
+
expect(result).toEqual({
|
|
54
|
+
contents: [
|
|
55
|
+
{
|
|
56
|
+
uri: "ui://widgets/my-widget.html",
|
|
57
|
+
mimeType: "text/html+skybridge",
|
|
58
|
+
text: expect.stringContaining('<div id="root"></div>'),
|
|
59
|
+
},
|
|
60
|
+
],
|
|
61
|
+
});
|
|
62
|
+
// Check production-specific content
|
|
63
|
+
expect(result.contents[0]?.text).not.toContain(serverUrl + "@react-refresh");
|
|
64
|
+
expect(result.contents[0]?.text).not.toContain(serverUrl + "@vite/client");
|
|
65
|
+
expect(result.contents[0]?.text).toContain(serverUrl + "/assets/my-widget.js");
|
|
66
|
+
expect(result.contents[0]?.text).toContain(serverUrl + "/assets/style.css");
|
|
67
|
+
});
|
|
68
|
+
});
|
|
69
|
+
//# sourceMappingURL=widget.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget.test.js","sourceRoot":"","sources":["../../../src/test/widget.test.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { useOpenAiGlobal } from "./use-openai-global.js";
|
|
2
|
+
export { useToolOutput } from "./use-tool-output.js";
|
|
3
|
+
export * from "./types.js";
|
|
4
|
+
export { mountWidget } from "./mount-widget.js";
|
|
5
|
+
export { skybridge } from "./plugin.js";
|
|
6
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/web/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const mountWidget: (component: React.ReactNode) => void;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { createElement, StrictMode } from "react";
|
|
2
|
+
import { createRoot } from "react-dom/client";
|
|
3
|
+
let rootInstance = null;
|
|
4
|
+
export const mountWidget = (component) => {
|
|
5
|
+
const rootElement = document.getElementById("root");
|
|
6
|
+
if (!rootElement) {
|
|
7
|
+
throw new Error("Root element not found");
|
|
8
|
+
}
|
|
9
|
+
if (!rootInstance) {
|
|
10
|
+
rootInstance = createRoot(rootElement);
|
|
11
|
+
}
|
|
12
|
+
rootInstance.render(createElement(StrictMode, null, component));
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=mount-widget.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mount-widget.js","sourceRoot":"","sources":["../../../src/web/mount-widget.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;AAClD,OAAO,EAAE,UAAU,EAAa,MAAM,kBAAkB,CAAC;AAEzD,IAAI,YAAY,GAAgB,IAAI,CAAC;AAErC,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,SAA0B,EAAE,EAAE;IACxD,MAAM,WAAW,GAAG,QAAQ,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC;IACpD,IAAI,CAAC,WAAW,EAAE,CAAC;QACjB,MAAM,IAAI,KAAK,CAAC,wBAAwB,CAAC,CAAC;IAC5C,CAAC;IAED,IAAI,CAAC,YAAY,EAAE,CAAC;QAClB,YAAY,GAAG,UAAU,CAAC,WAAW,CAAC,CAAC;IACzC,CAAC;IAED,YAAY,CAAC,MAAM,CAAC,aAAa,CAAC,UAAU,EAAE,IAAI,EAAE,SAAS,CAAC,CAAC,CAAC;AAClE,CAAC,CAAC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export function skybridge() {
|
|
2
|
+
return {
|
|
3
|
+
name: "skybridge",
|
|
4
|
+
async config(config) {
|
|
5
|
+
// Dynamic imports to ensure Node modules are only loaded in Node.js context
|
|
6
|
+
const { globSync } = await import("node:fs");
|
|
7
|
+
const { resolve } = await import("node:path");
|
|
8
|
+
const projectRoot = config.root || process.cwd();
|
|
9
|
+
const widgetsPattern = resolve(projectRoot, "src/widgets/*.{js,ts,jsx,tsx,html}");
|
|
10
|
+
const input = Object.fromEntries(globSync(widgetsPattern).map((file) => [
|
|
11
|
+
file.match(/src\/widgets\/(.+)\.tsx$/)?.[1],
|
|
12
|
+
file,
|
|
13
|
+
]));
|
|
14
|
+
return {
|
|
15
|
+
build: {
|
|
16
|
+
minify: true,
|
|
17
|
+
cssCodeSplit: false,
|
|
18
|
+
rollupOptions: {
|
|
19
|
+
input,
|
|
20
|
+
output: {
|
|
21
|
+
entryFileNames: "[name].js",
|
|
22
|
+
assetFileNames: "[name][extname]",
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
};
|
|
27
|
+
},
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=plugin.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../../../src/web/plugin.ts"],"names":[],"mappings":"AAEA,MAAM,UAAU,SAAS;IACvB,OAAO;QACL,IAAI,EAAE,WAAW;QAEjB,KAAK,CAAC,MAAM,CAAC,MAAM;YACjB,4EAA4E;YAC5E,MAAM,EAAE,QAAQ,EAAE,GAAG,MAAM,MAAM,CAAC,SAAS,CAAC,CAAC;YAC7C,MAAM,EAAE,OAAO,EAAE,GAAG,MAAM,MAAM,CAAC,WAAW,CAAC,CAAC;YAE9C,MAAM,WAAW,GAAG,MAAM,CAAC,IAAI,IAAI,OAAO,CAAC,GAAG,EAAE,CAAC;YACjD,MAAM,cAAc,GAAG,OAAO,CAC5B,WAAW,EACX,oCAAoC,CACrC,CAAC;YAEF,MAAM,KAAK,GAAG,MAAM,CAAC,WAAW,CAC9B,QAAQ,CAAC,cAAc,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC;gBACrC,IAAI,CAAC,KAAK,CAAC,0BAA0B,CAAC,EAAE,CAAC,CAAC,CAAC;gBAC3C,IAAI;aACL,CAAC,CACH,CAAC;YAEF,OAAO;gBACL,KAAK,EAAE;oBACL,MAAM,EAAE,IAAI;oBACZ,YAAY,EAAE,KAAK;oBACnB,aAAa,EAAE;wBACb,KAAK;wBACL,MAAM,EAAE;4BACN,cAAc,EAAE,WAAW;4BAC3B,cAAc,EAAE,iBAAiB;yBAClC;qBACF;iBACF;aACF,CAAC;QACJ,CAAC;KACF,CAAC;AACJ,CAAC"}
|