create-skybridge 0.0.0-dev.0 → 0.0.0-dev.0005b31
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/index.d.ts +1 -1
- package/dist/index.js +141 -56
- package/dist/index.test.d.ts +1 -0
- package/dist/index.test.js +33 -0
- package/index.js +6 -1
- package/package.json +14 -7
- package/template/README.md +77 -0
- package/template/_gitignore +5 -0
- package/template/alpic.json +3 -0
- package/template/node_modules/.bin/mcp-inspector +21 -0
- package/template/node_modules/.bin/nodemon +21 -0
- package/template/node_modules/.bin/sb +21 -0
- package/template/node_modules/.bin/skybridge +21 -0
- package/template/node_modules/.bin/tsc +21 -0
- package/template/node_modules/.bin/tsserver +21 -0
- package/template/node_modules/.bin/tsx +21 -0
- package/template/node_modules/.bin/vite +21 -0
- package/template/nodemon.json +5 -0
- package/template/package.json +38 -0
- package/template/server/src/index.ts +42 -0
- package/template/server/src/middleware.ts +54 -0
- package/template/server/src/server.ts +61 -0
- package/template/tsconfig.json +23 -0
- package/template/tsconfig.server.json +11 -0
- package/template/web/src/helpers.ts +4 -0
- package/template/web/src/index.css +151 -0
- package/template/web/src/widgets/magic-8-ball.tsx +24 -0
- package/template/web/vite.config.ts +15 -0
package/dist/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export declare function init(args?: string[]): Promise<void>;
|
package/dist/index.js
CHANGED
|
@@ -1,49 +1,45 @@
|
|
|
1
|
-
|
|
2
|
-
import * as prompts from "@clack/prompts";
|
|
3
|
-
import mri from "mri";
|
|
1
|
+
import { spawnSync } from "node:child_process";
|
|
4
2
|
import fs from "node:fs";
|
|
5
3
|
import path from "node:path";
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
const cwd = process.cwd();
|
|
12
|
-
const TEMPLATE_REPO = "https://github.com/alpic-ai/apps-sdk-template";
|
|
13
|
-
const defaultTargetDir = "skybridge-project";
|
|
4
|
+
import { fileURLToPath } from "node:url";
|
|
5
|
+
import * as prompts from "@clack/prompts";
|
|
6
|
+
import { downloadTemplate } from "giget";
|
|
7
|
+
import mri from "mri";
|
|
8
|
+
const defaultProjectName = "skybridge-project";
|
|
14
9
|
// prettier-ignore
|
|
15
10
|
const helpMessage = `\
|
|
16
11
|
Usage: create-skybridge [OPTION]... [DIRECTORY]
|
|
17
12
|
|
|
18
|
-
Create a new Skybridge project by
|
|
13
|
+
Create a new Skybridge project by copying the starter template.
|
|
19
14
|
|
|
20
15
|
Options:
|
|
21
16
|
-h, --help show this help message
|
|
17
|
+
--repo <uri> use a git repository instead of the built-in template
|
|
22
18
|
--overwrite remove existing files in target directory
|
|
19
|
+
--immediate install dependencies and start development server
|
|
20
|
+
|
|
21
|
+
Repository URI formats:
|
|
22
|
+
github:user/repo
|
|
23
|
+
gitlab:user/repo/subdirectory
|
|
24
|
+
bitbucket:user/repo#branch
|
|
23
25
|
|
|
24
26
|
Examples:
|
|
25
27
|
create-skybridge my-app
|
|
26
|
-
create-skybridge
|
|
28
|
+
create-skybridge my-app --repo github:alpic-ai/skybridge/examples/ecom-carousel
|
|
29
|
+
create-skybridge . --overwrite --immediate
|
|
27
30
|
`;
|
|
28
|
-
function
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
process.exit(status);
|
|
35
|
-
}
|
|
36
|
-
if (error) {
|
|
37
|
-
console.error(`\n${command} ${args.join(" ")} error!`);
|
|
38
|
-
console.error(error);
|
|
39
|
-
process.exit(1);
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
async function init() {
|
|
31
|
+
export async function init(args = process.argv.slice(2)) {
|
|
32
|
+
const argv = mri(args, {
|
|
33
|
+
boolean: ["help", "overwrite", "immediate"],
|
|
34
|
+
string: ["repo"],
|
|
35
|
+
alias: { h: "help" },
|
|
36
|
+
});
|
|
43
37
|
const argTargetDir = argv._[0]
|
|
44
|
-
?
|
|
38
|
+
? sanitizeTargetDir(String(argv._[0]))
|
|
45
39
|
: undefined;
|
|
40
|
+
const argRepo = argv.repo;
|
|
46
41
|
const argOverwrite = argv.overwrite;
|
|
42
|
+
const argImmediate = argv.immediate;
|
|
47
43
|
const help = argv.help;
|
|
48
44
|
if (help) {
|
|
49
45
|
console.log(helpMessage);
|
|
@@ -57,20 +53,21 @@ async function init() {
|
|
|
57
53
|
if (interactive) {
|
|
58
54
|
const projectName = await prompts.text({
|
|
59
55
|
message: "Project name:",
|
|
60
|
-
defaultValue:
|
|
61
|
-
placeholder:
|
|
56
|
+
defaultValue: defaultProjectName,
|
|
57
|
+
placeholder: defaultProjectName,
|
|
62
58
|
validate: (value) => {
|
|
63
|
-
return value.length === 0 ||
|
|
59
|
+
return value.length === 0 || sanitizeTargetDir(value).length > 0
|
|
64
60
|
? undefined
|
|
65
61
|
: "Invalid project name";
|
|
66
62
|
},
|
|
67
63
|
});
|
|
68
|
-
if (prompts.isCancel(projectName))
|
|
64
|
+
if (prompts.isCancel(projectName)) {
|
|
69
65
|
return cancel();
|
|
70
|
-
|
|
66
|
+
}
|
|
67
|
+
targetDir = sanitizeTargetDir(projectName);
|
|
71
68
|
}
|
|
72
69
|
else {
|
|
73
|
-
targetDir =
|
|
70
|
+
targetDir = defaultProjectName;
|
|
74
71
|
}
|
|
75
72
|
}
|
|
76
73
|
// 2. Handle directory if exist and not empty
|
|
@@ -94,8 +91,9 @@ async function init() {
|
|
|
94
91
|
},
|
|
95
92
|
],
|
|
96
93
|
});
|
|
97
|
-
if (prompts.isCancel(res))
|
|
94
|
+
if (prompts.isCancel(res)) {
|
|
98
95
|
return cancel();
|
|
96
|
+
}
|
|
99
97
|
overwrite = res;
|
|
100
98
|
}
|
|
101
99
|
else {
|
|
@@ -111,30 +109,121 @@ async function init() {
|
|
|
111
109
|
return;
|
|
112
110
|
}
|
|
113
111
|
}
|
|
114
|
-
const root = path.join(cwd, targetDir);
|
|
115
|
-
// 3.
|
|
116
|
-
prompts.log.step(`Cloning template from ${TEMPLATE_REPO}...`);
|
|
112
|
+
const root = path.join(process.cwd(), targetDir);
|
|
113
|
+
// 3. Download from repo or copy template
|
|
117
114
|
try {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
115
|
+
if (argRepo) {
|
|
116
|
+
prompts.log.step(`Downloading ${argRepo}...`);
|
|
117
|
+
await downloadTemplate(argRepo, { dir: root });
|
|
118
|
+
prompts.log.success(`Project created in ${root}`);
|
|
119
|
+
}
|
|
120
|
+
else {
|
|
121
|
+
prompts.log.step(`Copying template...`);
|
|
122
|
+
const templateDir = fileURLToPath(new URL("../template", import.meta.url));
|
|
123
|
+
// Copy template to target directory
|
|
124
|
+
fs.cpSync(templateDir, root, {
|
|
125
|
+
recursive: true,
|
|
126
|
+
filter: (src) => [".npmrc"].every((file) => !src.endsWith(file)),
|
|
127
|
+
});
|
|
128
|
+
// Rename _gitignore to .gitignore
|
|
129
|
+
fs.renameSync(path.join(root, "_gitignore"), path.join(root, ".gitignore"));
|
|
130
|
+
prompts.log.success(`Project created in ${root}`);
|
|
126
131
|
}
|
|
127
|
-
prompts.log.success(`Project created in ${root}`);
|
|
128
|
-
prompts.outro(`Done! Next steps:\n\n cd ${targetDir}\n pnpm install\n pnpm dev`);
|
|
129
132
|
}
|
|
130
133
|
catch (error) {
|
|
131
|
-
prompts.log.error("Failed to
|
|
134
|
+
prompts.log.error("Failed to create project from template");
|
|
135
|
+
console.error(error);
|
|
136
|
+
process.exit(1);
|
|
137
|
+
}
|
|
138
|
+
// Update project name in package.json
|
|
139
|
+
const pkgPath = path.join(root, "package.json");
|
|
140
|
+
if (!fs.existsSync(pkgPath)) {
|
|
141
|
+
prompts.log.error("No package.json found in project");
|
|
142
|
+
process.exit(1);
|
|
143
|
+
}
|
|
144
|
+
try {
|
|
145
|
+
const pkg = JSON.parse(fs.readFileSync(pkgPath, "utf-8"));
|
|
146
|
+
pkg.name = path.basename(root);
|
|
147
|
+
fs.writeFileSync(pkgPath, `${JSON.stringify(pkg, null, 2)}\n`);
|
|
148
|
+
}
|
|
149
|
+
catch (error) {
|
|
150
|
+
prompts.log.error("Failed to update project name in package.json");
|
|
151
|
+
console.error(error);
|
|
152
|
+
process.exit(1);
|
|
153
|
+
}
|
|
154
|
+
const userAgent = process.env.npm_config_user_agent;
|
|
155
|
+
const pkgManager = userAgent?.split(" ")[0]?.split("/")[0] || "npm";
|
|
156
|
+
// 4. Ask about immediate installation
|
|
157
|
+
let immediate = argImmediate;
|
|
158
|
+
if (immediate === undefined) {
|
|
159
|
+
if (interactive) {
|
|
160
|
+
const immediateResult = await prompts.confirm({
|
|
161
|
+
message: `Install with ${pkgManager} and start now?`,
|
|
162
|
+
});
|
|
163
|
+
if (prompts.isCancel(immediateResult)) {
|
|
164
|
+
return cancel();
|
|
165
|
+
}
|
|
166
|
+
immediate = immediateResult;
|
|
167
|
+
}
|
|
168
|
+
else {
|
|
169
|
+
immediate = false;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
const installCmd = [pkgManager, "install"];
|
|
173
|
+
const runCmd = [pkgManager];
|
|
174
|
+
switch (pkgManager) {
|
|
175
|
+
case "yarn":
|
|
176
|
+
case "pnpm":
|
|
177
|
+
case "bun":
|
|
178
|
+
break;
|
|
179
|
+
case "deno":
|
|
180
|
+
runCmd.push("task");
|
|
181
|
+
break;
|
|
182
|
+
default:
|
|
183
|
+
runCmd.push("run");
|
|
184
|
+
}
|
|
185
|
+
runCmd.push("dev");
|
|
186
|
+
if (!immediate) {
|
|
187
|
+
prompts.outro(`Done! Next steps:
|
|
188
|
+
cd ${targetDir}
|
|
189
|
+
${installCmd.join(" ")}
|
|
190
|
+
${runCmd.join(" ")}
|
|
191
|
+
`);
|
|
192
|
+
return;
|
|
193
|
+
}
|
|
194
|
+
prompts.log.step(`Installing dependencies with ${pkgManager}...`);
|
|
195
|
+
run(installCmd, {
|
|
196
|
+
stdio: "inherit",
|
|
197
|
+
cwd: root,
|
|
198
|
+
});
|
|
199
|
+
prompts.log.step("Starting dev server...");
|
|
200
|
+
run(runCmd, {
|
|
201
|
+
stdio: "inherit",
|
|
202
|
+
cwd: root,
|
|
203
|
+
});
|
|
204
|
+
}
|
|
205
|
+
function run([command, ...args], options) {
|
|
206
|
+
const { status, error } = spawnSync(command, args, options);
|
|
207
|
+
if (status != null && status > 0) {
|
|
208
|
+
process.exit(status);
|
|
209
|
+
}
|
|
210
|
+
if (error) {
|
|
211
|
+
console.error(`\n${command} ${args.join(" ")} error!`);
|
|
132
212
|
console.error(error);
|
|
133
213
|
process.exit(1);
|
|
134
214
|
}
|
|
135
215
|
}
|
|
136
|
-
function
|
|
137
|
-
return targetDir
|
|
216
|
+
function sanitizeTargetDir(targetDir) {
|
|
217
|
+
return (targetDir
|
|
218
|
+
.trim()
|
|
219
|
+
// Only keep alphanumeric, dash, underscore, dot, @, /
|
|
220
|
+
.replace(/[^a-zA-Z0-9\-_.@/]/g, "")
|
|
221
|
+
// Prevent path traversal
|
|
222
|
+
.replace(/\.\./g, "")
|
|
223
|
+
// Collapse multiple slashes
|
|
224
|
+
.replace(/\/+/g, "/")
|
|
225
|
+
// Remove leading/trailing slashes
|
|
226
|
+
.replace(/^\/+|\/+$/g, ""));
|
|
138
227
|
}
|
|
139
228
|
function isEmpty(path) {
|
|
140
229
|
const files = fs.readdirSync(path);
|
|
@@ -151,7 +240,3 @@ function emptyDir(dir) {
|
|
|
151
240
|
fs.rmSync(path.resolve(dir, file), { recursive: true, force: true });
|
|
152
241
|
}
|
|
153
242
|
}
|
|
154
|
-
init().catch((e) => {
|
|
155
|
-
console.error(e);
|
|
156
|
-
process.exit(1);
|
|
157
|
-
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { randomBytes } from "node:crypto";
|
|
2
|
+
import fs from "node:fs/promises";
|
|
3
|
+
import path from "node:path";
|
|
4
|
+
import { afterEach, beforeEach, describe, expect, it } from "vitest";
|
|
5
|
+
import { init } from "./index.js";
|
|
6
|
+
describe("create-skybridge", () => {
|
|
7
|
+
let tempDirName;
|
|
8
|
+
beforeEach(() => {
|
|
9
|
+
tempDirName = `test-${randomBytes(2).toString("hex")}`;
|
|
10
|
+
});
|
|
11
|
+
afterEach(async () => {
|
|
12
|
+
await fs.rm(path.join(process.cwd(), tempDirName), {
|
|
13
|
+
recursive: true,
|
|
14
|
+
force: true,
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
it("should copy the template", async () => {
|
|
18
|
+
const name = `../../${tempDirName}//project$`;
|
|
19
|
+
await init([name]);
|
|
20
|
+
await fs.access(path.join(process.cwd(), tempDirName, "project", ".gitignore"));
|
|
21
|
+
expect(fs.access(path.join(process.cwd(), tempDirName, "project", ".npmrc"))).rejects.toThrowError();
|
|
22
|
+
});
|
|
23
|
+
it("should download template from repo", async () => {
|
|
24
|
+
const name = `../../${tempDirName}//project$`;
|
|
25
|
+
await init([
|
|
26
|
+
name,
|
|
27
|
+
"--repo",
|
|
28
|
+
"github:alpic-ai/skybridge/examples/ecom-carousel",
|
|
29
|
+
]);
|
|
30
|
+
await fs.access(path.join(process.cwd(), tempDirName, "project", ".gitignore"));
|
|
31
|
+
expect(fs.access(path.join(process.cwd(), tempDirName, "project", ".npmrc"))).rejects.toThrowError();
|
|
32
|
+
});
|
|
33
|
+
});
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,27 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-skybridge",
|
|
3
|
-
"version": "0.0.0-dev.
|
|
3
|
+
"version": "0.0.0-dev.0005b31",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Alpic",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/alpic-ai/skybridge.git"
|
|
10
|
+
},
|
|
7
11
|
"bin": {
|
|
8
|
-
"create-skybridge": "
|
|
12
|
+
"create-skybridge": "index.js"
|
|
9
13
|
},
|
|
10
14
|
"files": [
|
|
11
15
|
"index.js",
|
|
12
|
-
"dist"
|
|
16
|
+
"dist",
|
|
17
|
+
"template"
|
|
13
18
|
],
|
|
14
19
|
"dependencies": {
|
|
15
20
|
"@clack/prompts": "^0.11.0",
|
|
21
|
+
"giget": "^2.0.0",
|
|
16
22
|
"mri": "^1.2.0"
|
|
17
23
|
},
|
|
18
24
|
"devDependencies": {
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"typescript": "^5.9.3"
|
|
25
|
+
"typescript": "^5.9.3",
|
|
26
|
+
"vitest": "^4.0.17"
|
|
22
27
|
},
|
|
23
28
|
"scripts": {
|
|
24
|
-
"build": "tsc
|
|
29
|
+
"build": "tsc",
|
|
30
|
+
"test": "pnpm run test:unit && pnpm run test:type && pnpm run test:format",
|
|
31
|
+
"test:unit": "vitest run",
|
|
25
32
|
"test:type": "tsc --noEmit",
|
|
26
33
|
"test:format": "biome ci"
|
|
27
34
|
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# Skybridge Starter
|
|
2
|
+
|
|
3
|
+
A minimal TypeScript template for building ChatGPT and MCP Apps with widget rendering.
|
|
4
|
+
|
|
5
|
+
## Getting Started
|
|
6
|
+
|
|
7
|
+
### Prerequisites
|
|
8
|
+
|
|
9
|
+
- Node.js 24+
|
|
10
|
+
- HTTP tunnel such as [ngrok](https://ngrok.com/download)
|
|
11
|
+
|
|
12
|
+
### Local Development
|
|
13
|
+
|
|
14
|
+
#### 1. Install
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install
|
|
18
|
+
# or
|
|
19
|
+
yarn install
|
|
20
|
+
# or
|
|
21
|
+
pnpm install
|
|
22
|
+
# or
|
|
23
|
+
bun install
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
#### 2. Start your local server
|
|
27
|
+
|
|
28
|
+
Run the development server from the root directory:
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
npm run dev
|
|
32
|
+
# or
|
|
33
|
+
yarn dev
|
|
34
|
+
# or
|
|
35
|
+
pnpm dev
|
|
36
|
+
# or
|
|
37
|
+
bun dev
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
This command starts an Express server on port 3000. This server packages:
|
|
41
|
+
|
|
42
|
+
- an MCP endpoint on `/mcp` (the app backend)
|
|
43
|
+
- a React application on Vite HMR dev server (the UI elements to be displayed in the host)
|
|
44
|
+
|
|
45
|
+
#### 3. Connect to ChatGPT
|
|
46
|
+
|
|
47
|
+
- ChatGPT requires connectors to be publicly accessible. To expose your server on the Internet, run:
|
|
48
|
+
```bash
|
|
49
|
+
ngrok http 3000
|
|
50
|
+
```
|
|
51
|
+
- In ChatGPT, navigate to **Settings → Connectors → Create** and add the forwarding URL provided by ngrok suffixed with `/mcp` (e.g. `https://3785c5ddc4b6.ngrok-free.app/mcp`)
|
|
52
|
+
|
|
53
|
+
### Create your first widget
|
|
54
|
+
|
|
55
|
+
#### 1. Add a new widget
|
|
56
|
+
|
|
57
|
+
- Register a widget in `server/server.ts` with a unique name (e.g., `my-widget`)
|
|
58
|
+
- Create a matching React component at `web/src/widgets/my-widget.tsx`. The file name must match the widget name exactly
|
|
59
|
+
|
|
60
|
+
#### 2. Edit widgets with Hot Module Replacement (HMR)
|
|
61
|
+
|
|
62
|
+
Edit and save components in `web/src/widgets/` — changes appear instantly in the host
|
|
63
|
+
|
|
64
|
+
#### 3. Edit server code
|
|
65
|
+
|
|
66
|
+
Modify files in `server/` and reload your ChatGPT connector in **Settings → Connectors → [Your connector] → Reload**
|
|
67
|
+
|
|
68
|
+
## Deploy to Production
|
|
69
|
+
|
|
70
|
+
- Use [Alpic](https://alpic.ai/) to deploy your OpenAI App to production
|
|
71
|
+
- In ChatGPT, navigate to **Settings → Connectors → Create** and add your MCP server URL (e.g., `https://your-app-name.alpic.live`)
|
|
72
|
+
|
|
73
|
+
## Resources
|
|
74
|
+
|
|
75
|
+
- [Apps SDK Documentation](https://developers.openai.com/apps-sdk)
|
|
76
|
+
- [Model Context Protocol Documentation](https://modelcontextprotocol.io/)
|
|
77
|
+
- [Alpic Documentation](https://docs.alpic.ai/)
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
10
|
+
esac
|
|
11
|
+
|
|
12
|
+
if [ -z "$NODE_PATH" ]; then
|
|
13
|
+
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_4be4554909ca0a790f3ece65616617d1/node_modules/@modelcontextprotocol/inspector/cli/build/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_4be4554909ca0a790f3ece65616617d1/node_modules/@modelcontextprotocol/inspector/cli/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_4be4554909ca0a790f3ece65616617d1/node_modules/@modelcontextprotocol/inspector/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_4be4554909ca0a790f3ece65616617d1/node_modules/@modelcontextprotocol/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_4be4554909ca0a790f3ece65616617d1/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
|
|
14
|
+
else
|
|
15
|
+
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_4be4554909ca0a790f3ece65616617d1/node_modules/@modelcontextprotocol/inspector/cli/build/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_4be4554909ca0a790f3ece65616617d1/node_modules/@modelcontextprotocol/inspector/cli/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_4be4554909ca0a790f3ece65616617d1/node_modules/@modelcontextprotocol/inspector/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_4be4554909ca0a790f3ece65616617d1/node_modules/@modelcontextprotocol/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@modelcontextprotocol+inspector@0.18.0_@types+node@25.0.3_@types+react-dom@19.2.3_@type_4be4554909ca0a790f3ece65616617d1/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
+
fi
|
|
17
|
+
if [ -x "$basedir/node" ]; then
|
|
18
|
+
exec "$basedir/node" "$basedir/../@modelcontextprotocol/inspector/cli/build/cli.js" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../@modelcontextprotocol/inspector/cli/build/cli.js" "$@"
|
|
21
|
+
fi
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
10
|
+
esac
|
|
11
|
+
|
|
12
|
+
if [ -z "$NODE_PATH" ]; then
|
|
13
|
+
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/nodemon@3.1.11/node_modules/nodemon/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/nodemon@3.1.11/node_modules/nodemon/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/nodemon@3.1.11/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
|
|
14
|
+
else
|
|
15
|
+
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/nodemon@3.1.11/node_modules/nodemon/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/nodemon@3.1.11/node_modules/nodemon/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/nodemon@3.1.11/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
+
fi
|
|
17
|
+
if [ -x "$basedir/node" ]; then
|
|
18
|
+
exec "$basedir/node" "$basedir/../nodemon/bin/nodemon.js" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../nodemon/bin/nodemon.js" "$@"
|
|
21
|
+
fi
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
10
|
+
esac
|
|
11
|
+
|
|
12
|
+
if [ -z "$NODE_PATH" ]; then
|
|
13
|
+
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.26.1_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_735eb51dc660b44c8f8bd4f7ce48a0d2/node_modules/skybridge/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.26.1_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_735eb51dc660b44c8f8bd4f7ce48a0d2/node_modules/skybridge/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.26.1_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_735eb51dc660b44c8f8bd4f7ce48a0d2/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
|
|
14
|
+
else
|
|
15
|
+
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.26.1_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_735eb51dc660b44c8f8bd4f7ce48a0d2/node_modules/skybridge/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.26.1_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_735eb51dc660b44c8f8bd4f7ce48a0d2/node_modules/skybridge/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.26.1_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_735eb51dc660b44c8f8bd4f7ce48a0d2/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
+
fi
|
|
17
|
+
if [ -x "$basedir/node" ]; then
|
|
18
|
+
exec "$basedir/node" "$basedir/../skybridge/bin/run.js" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../skybridge/bin/run.js" "$@"
|
|
21
|
+
fi
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
10
|
+
esac
|
|
11
|
+
|
|
12
|
+
if [ -z "$NODE_PATH" ]; then
|
|
13
|
+
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.26.1_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_735eb51dc660b44c8f8bd4f7ce48a0d2/node_modules/skybridge/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.26.1_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_735eb51dc660b44c8f8bd4f7ce48a0d2/node_modules/skybridge/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.26.1_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_735eb51dc660b44c8f8bd4f7ce48a0d2/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
|
|
14
|
+
else
|
|
15
|
+
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.26.1_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_735eb51dc660b44c8f8bd4f7ce48a0d2/node_modules/skybridge/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.26.1_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_735eb51dc660b44c8f8bd4f7ce48a0d2/node_modules/skybridge/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/skybridge@0.26.1_@modelcontextprotocol+sdk@1.25.2_hono@4.11.3_zod@4.3.5__@types+node@25_735eb51dc660b44c8f8bd4f7ce48a0d2/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
+
fi
|
|
17
|
+
if [ -x "$basedir/node" ]; then
|
|
18
|
+
exec "$basedir/node" "$basedir/../skybridge/bin/run.js" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../skybridge/bin/run.js" "$@"
|
|
21
|
+
fi
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
10
|
+
esac
|
|
11
|
+
|
|
12
|
+
if [ -z "$NODE_PATH" ]; then
|
|
13
|
+
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
|
|
14
|
+
else
|
|
15
|
+
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
+
fi
|
|
17
|
+
if [ -x "$basedir/node" ]; then
|
|
18
|
+
exec "$basedir/node" "$basedir/../typescript/bin/tsc" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../typescript/bin/tsc" "$@"
|
|
21
|
+
fi
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
10
|
+
esac
|
|
11
|
+
|
|
12
|
+
if [ -z "$NODE_PATH" ]; then
|
|
13
|
+
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
|
|
14
|
+
else
|
|
15
|
+
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@5.9.3/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
+
fi
|
|
17
|
+
if [ -x "$basedir/node" ]; then
|
|
18
|
+
exec "$basedir/node" "$basedir/../typescript/bin/tsserver" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../typescript/bin/tsserver" "$@"
|
|
21
|
+
fi
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
10
|
+
esac
|
|
11
|
+
|
|
12
|
+
if [ -z "$NODE_PATH" ]; then
|
|
13
|
+
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.21.0/node_modules/tsx/dist/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.21.0/node_modules/tsx/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.21.0/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
|
|
14
|
+
else
|
|
15
|
+
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.21.0/node_modules/tsx/dist/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.21.0/node_modules/tsx/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.21.0/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
+
fi
|
|
17
|
+
if [ -x "$basedir/node" ]; then
|
|
18
|
+
exec "$basedir/node" "$basedir/../tsx/dist/cli.mjs" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../tsx/dist/cli.mjs" "$@"
|
|
21
|
+
fi
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
10
|
+
esac
|
|
11
|
+
|
|
12
|
+
if [ -z "$NODE_PATH" ]; then
|
|
13
|
+
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.1_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.1_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.1_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
|
|
14
|
+
else
|
|
15
|
+
export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.1_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.1_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/node_modules/vite/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.1_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0_yaml@2.8.2/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
+
fi
|
|
17
|
+
if [ -x "$basedir/node" ]; then
|
|
18
|
+
exec "$basedir/node" "$basedir/../vite/bin/vite.js" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../vite/bin/vite.js" "$@"
|
|
21
|
+
fi
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "apps-sdk-template",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"private": true,
|
|
5
|
+
"description": "Alpic MCP Server Template",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"dev": "skybridge dev",
|
|
9
|
+
"build": "skybridge build",
|
|
10
|
+
"start": "skybridge start",
|
|
11
|
+
"inspector": "mcp-inspector http://localhost:3000/mcp"
|
|
12
|
+
},
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
15
|
+
"cors": "^2.8.5",
|
|
16
|
+
"express": "^5.2.1",
|
|
17
|
+
"react": "^19.2.3",
|
|
18
|
+
"react-dom": "^19.2.3",
|
|
19
|
+
"skybridge": ">=0.26.1 <1.0.0",
|
|
20
|
+
"vite": "^7.3.1",
|
|
21
|
+
"zod": "^4.3.5"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@modelcontextprotocol/inspector": "^0.18.0",
|
|
25
|
+
"@skybridge/devtools": ">=0.26.1 <1.0.0",
|
|
26
|
+
"@types/cors": "^2.8.19",
|
|
27
|
+
"@types/express": "^5.0.6",
|
|
28
|
+
"@types/react": "^19.2.8",
|
|
29
|
+
"@types/react-dom": "^19.2.3",
|
|
30
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
31
|
+
"nodemon": "^3.1.11",
|
|
32
|
+
"tsx": "^4.21.0",
|
|
33
|
+
"typescript": "^5.9.3"
|
|
34
|
+
},
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=24.13.0"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import path from "node:path";
|
|
2
|
+
import { fileURLToPath } from "node:url";
|
|
3
|
+
import cors from "cors";
|
|
4
|
+
import express, { type Express } from "express";
|
|
5
|
+
import { widgetsDevServer } from "skybridge/server";
|
|
6
|
+
import type { ViteDevServer } from "vite";
|
|
7
|
+
import { mcp } from "./middleware.js";
|
|
8
|
+
import server from "./server.js";
|
|
9
|
+
|
|
10
|
+
const app = express() as Express & { vite: ViteDevServer };
|
|
11
|
+
|
|
12
|
+
app.use(express.json());
|
|
13
|
+
|
|
14
|
+
app.use(mcp(server));
|
|
15
|
+
|
|
16
|
+
const env = process.env.NODE_ENV || "development";
|
|
17
|
+
|
|
18
|
+
if (env !== "production") {
|
|
19
|
+
const { devtoolsStaticServer } = await import("@skybridge/devtools");
|
|
20
|
+
app.use(await devtoolsStaticServer());
|
|
21
|
+
app.use(await widgetsDevServer());
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
if (env === "production") {
|
|
25
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
26
|
+
const __dirname = path.dirname(__filename);
|
|
27
|
+
|
|
28
|
+
app.use("/assets", cors());
|
|
29
|
+
app.use("/assets", express.static(path.join(__dirname, "assets")));
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
app.listen(3000, (error) => {
|
|
33
|
+
if (error) {
|
|
34
|
+
console.error("Failed to start server:", error);
|
|
35
|
+
process.exit(1);
|
|
36
|
+
}
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
process.on("SIGINT", async () => {
|
|
40
|
+
console.log("Server shutdown complete");
|
|
41
|
+
process.exit(0);
|
|
42
|
+
});
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { StreamableHTTPServerTransport } from "@modelcontextprotocol/sdk/server/streamableHttp.js";
|
|
2
|
+
import type { NextFunction, Request, Response } from "express";
|
|
3
|
+
|
|
4
|
+
import type { McpServer } from "skybridge/server";
|
|
5
|
+
|
|
6
|
+
export const mcp =
|
|
7
|
+
(server: McpServer) =>
|
|
8
|
+
async (req: Request, res: Response, next: NextFunction) => {
|
|
9
|
+
// Only handle requests to the /mcp path
|
|
10
|
+
if (req.path !== "/mcp") {
|
|
11
|
+
return next();
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
if (req.method === "POST") {
|
|
15
|
+
try {
|
|
16
|
+
const transport = new StreamableHTTPServerTransport({
|
|
17
|
+
sessionIdGenerator: undefined,
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
res.on("close", () => {
|
|
21
|
+
transport.close();
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
await server.connect(transport);
|
|
25
|
+
|
|
26
|
+
await transport.handleRequest(req, res, req.body);
|
|
27
|
+
} catch (error) {
|
|
28
|
+
console.error("Error handling MCP request:", error);
|
|
29
|
+
if (!res.headersSent) {
|
|
30
|
+
res.status(500).json({
|
|
31
|
+
jsonrpc: "2.0",
|
|
32
|
+
error: {
|
|
33
|
+
code: -32603,
|
|
34
|
+
message: "Internal server error",
|
|
35
|
+
},
|
|
36
|
+
id: null,
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
} else if (req.method === "GET" || req.method === "DELETE") {
|
|
41
|
+
res.writeHead(405).end(
|
|
42
|
+
JSON.stringify({
|
|
43
|
+
jsonrpc: "2.0",
|
|
44
|
+
error: {
|
|
45
|
+
code: -32000,
|
|
46
|
+
message: "Method not allowed.",
|
|
47
|
+
},
|
|
48
|
+
id: null,
|
|
49
|
+
}),
|
|
50
|
+
);
|
|
51
|
+
} else {
|
|
52
|
+
next();
|
|
53
|
+
}
|
|
54
|
+
};
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { McpServer } from "skybridge/server";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
4
|
+
const Answers = [
|
|
5
|
+
"As I see it, yes",
|
|
6
|
+
"Don't count on it",
|
|
7
|
+
"It is certain",
|
|
8
|
+
"It is decidedly so",
|
|
9
|
+
"Most likely",
|
|
10
|
+
"My reply is no",
|
|
11
|
+
"My sources say no",
|
|
12
|
+
"Outlook good",
|
|
13
|
+
"Outlook not so good",
|
|
14
|
+
"Signs point to yes",
|
|
15
|
+
"Very doubtful",
|
|
16
|
+
"Without a doubt",
|
|
17
|
+
"Yes definitely",
|
|
18
|
+
"Yes",
|
|
19
|
+
"You may rely on it",
|
|
20
|
+
];
|
|
21
|
+
|
|
22
|
+
const server = new McpServer(
|
|
23
|
+
{
|
|
24
|
+
name: "alpic-openai-app",
|
|
25
|
+
version: "0.0.1",
|
|
26
|
+
},
|
|
27
|
+
{ capabilities: {} },
|
|
28
|
+
).registerWidget(
|
|
29
|
+
"magic-8-ball",
|
|
30
|
+
{
|
|
31
|
+
description: "Magic 8 Ball",
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
description: "For fortune-telling or seeking advice.",
|
|
35
|
+
inputSchema: {
|
|
36
|
+
question: z.string().describe("The user question."),
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
async ({ question }) => {
|
|
40
|
+
try {
|
|
41
|
+
// deterministic answer
|
|
42
|
+
const hash = question
|
|
43
|
+
.split("")
|
|
44
|
+
.reduce((acc, char) => acc + char.charCodeAt(0), 0);
|
|
45
|
+
const answer = Answers[hash % Answers.length];
|
|
46
|
+
return {
|
|
47
|
+
structuredContent: { answer },
|
|
48
|
+
content: [],
|
|
49
|
+
isError: false,
|
|
50
|
+
};
|
|
51
|
+
} catch (error) {
|
|
52
|
+
return {
|
|
53
|
+
content: [{ type: "text", text: `Error: ${error}` }],
|
|
54
|
+
isError: true,
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
);
|
|
59
|
+
|
|
60
|
+
export default server;
|
|
61
|
+
export type AppType = typeof server;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2022",
|
|
4
|
+
"module": "ESNext",
|
|
5
|
+
"moduleResolution": "bundler",
|
|
6
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
7
|
+
"jsx": "react-jsx",
|
|
8
|
+
|
|
9
|
+
"strict": true,
|
|
10
|
+
"skipLibCheck": true,
|
|
11
|
+
"esModuleInterop": true,
|
|
12
|
+
"forceConsistentCasingInFileNames": true,
|
|
13
|
+
"verbatimModuleSyntax": true,
|
|
14
|
+
|
|
15
|
+
"noUnusedLocals": true,
|
|
16
|
+
"noUnusedParameters": true,
|
|
17
|
+
"noFallthroughCasesInSwitch": true,
|
|
18
|
+
|
|
19
|
+
"noEmit": true
|
|
20
|
+
},
|
|
21
|
+
"include": ["server/src", "web/src", "web/vite.config.ts"],
|
|
22
|
+
"exclude": ["dist", "node_modules"]
|
|
23
|
+
}
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,600&display=swap");
|
|
2
|
+
|
|
3
|
+
.container {
|
|
4
|
+
display: flex;
|
|
5
|
+
justify-content: center;
|
|
6
|
+
align-items: center;
|
|
7
|
+
height: 100%;
|
|
8
|
+
padding: 1rem;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.ball {
|
|
12
|
+
background: radial-gradient(
|
|
13
|
+
circle at 30% 30%,
|
|
14
|
+
#454565 0%,
|
|
15
|
+
#1c1c30 40%,
|
|
16
|
+
#0a0a10 100%
|
|
17
|
+
);
|
|
18
|
+
border-radius: 50%;
|
|
19
|
+
width: 12rem;
|
|
20
|
+
height: 12rem;
|
|
21
|
+
display: flex;
|
|
22
|
+
flex-direction: column;
|
|
23
|
+
align-items: center;
|
|
24
|
+
justify-content: center;
|
|
25
|
+
font-family: monospace;
|
|
26
|
+
text-align: center;
|
|
27
|
+
position: relative;
|
|
28
|
+
box-shadow:
|
|
29
|
+
0 10px 30px rgba(0, 0, 0, 0.5),
|
|
30
|
+
0 5px 15px rgba(0, 0, 0, 0.3),
|
|
31
|
+
inset 0 -20px 40px rgba(0, 0, 0, 0.6);
|
|
32
|
+
animation:
|
|
33
|
+
float 3s ease-in-out infinite,
|
|
34
|
+
colorShift 15s ease-in-out infinite;
|
|
35
|
+
transition: transform 0.3s ease;
|
|
36
|
+
cursor: pointer;
|
|
37
|
+
border: 1px solid rgba(30, 30, 50, 0.6);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.ball:hover {
|
|
41
|
+
transform: scale(1.05) translateY(-8px);
|
|
42
|
+
animation: colorShift 15s ease-in-out infinite;
|
|
43
|
+
box-shadow:
|
|
44
|
+
0 20px 50px rgba(0, 0, 0, 0.6),
|
|
45
|
+
0 10px 25px rgba(0, 0, 0, 0.4),
|
|
46
|
+
inset 0 -20px 40px rgba(0, 0, 0, 0.6);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@keyframes float {
|
|
50
|
+
0%,
|
|
51
|
+
100% {
|
|
52
|
+
transform: translateY(0);
|
|
53
|
+
}
|
|
54
|
+
50% {
|
|
55
|
+
transform: translateY(-8px);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
@keyframes colorShift {
|
|
60
|
+
0%,
|
|
61
|
+
100% {
|
|
62
|
+
background: radial-gradient(
|
|
63
|
+
circle at 30% 30%,
|
|
64
|
+
#454565 0%,
|
|
65
|
+
#1c1c30 40%,
|
|
66
|
+
#0a0a10 100%
|
|
67
|
+
);
|
|
68
|
+
}
|
|
69
|
+
25% {
|
|
70
|
+
background: radial-gradient(
|
|
71
|
+
circle at 30% 30%,
|
|
72
|
+
#3f4a65 0%,
|
|
73
|
+
#181e30 40%,
|
|
74
|
+
#090a10 100%
|
|
75
|
+
);
|
|
76
|
+
}
|
|
77
|
+
50% {
|
|
78
|
+
background: radial-gradient(
|
|
79
|
+
circle at 30% 30%,
|
|
80
|
+
#3a5065 0%,
|
|
81
|
+
#152230 40%,
|
|
82
|
+
#080a10 100%
|
|
83
|
+
);
|
|
84
|
+
}
|
|
85
|
+
75% {
|
|
86
|
+
background: radial-gradient(
|
|
87
|
+
circle at 30% 30%,
|
|
88
|
+
#3f4a65 0%,
|
|
89
|
+
#181e30 40%,
|
|
90
|
+
#090a10 100%
|
|
91
|
+
);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.ball::before {
|
|
96
|
+
content: "";
|
|
97
|
+
position: absolute;
|
|
98
|
+
top: 8%;
|
|
99
|
+
left: 20%;
|
|
100
|
+
width: 30%;
|
|
101
|
+
height: 20%;
|
|
102
|
+
background: radial-gradient(
|
|
103
|
+
ellipse,
|
|
104
|
+
rgba(255, 255, 255, 0.3) 0%,
|
|
105
|
+
transparent 70%
|
|
106
|
+
);
|
|
107
|
+
border-radius: 50%;
|
|
108
|
+
pointer-events: none;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.ball::after {
|
|
112
|
+
content: "";
|
|
113
|
+
position: absolute;
|
|
114
|
+
bottom: 8%;
|
|
115
|
+
right: 25%;
|
|
116
|
+
width: 25%;
|
|
117
|
+
height: 10%;
|
|
118
|
+
background: radial-gradient(
|
|
119
|
+
ellipse,
|
|
120
|
+
rgba(255, 255, 255, 0.1) 0%,
|
|
121
|
+
transparent 70%
|
|
122
|
+
);
|
|
123
|
+
border-radius: 50%;
|
|
124
|
+
pointer-events: none;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.question {
|
|
128
|
+
font-size: clamp(0.5rem, 2vw, 0.75rem);
|
|
129
|
+
color: lightgrey;
|
|
130
|
+
max-width: 90%;
|
|
131
|
+
word-wrap: break-word;
|
|
132
|
+
overflow-wrap: break-word;
|
|
133
|
+
text-align: center;
|
|
134
|
+
line-height: 1.3;
|
|
135
|
+
font-style: italic;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.answer {
|
|
139
|
+
font-family: "Playfair Display", serif;
|
|
140
|
+
font-style: italic;
|
|
141
|
+
font-size: 1.25rem;
|
|
142
|
+
font-weight: 600;
|
|
143
|
+
margin-top: 0.5rem;
|
|
144
|
+
color: #7dd3fc;
|
|
145
|
+
text-shadow: 0 0 10px rgba(125, 211, 252, 0.5);
|
|
146
|
+
max-width: 90%;
|
|
147
|
+
word-wrap: break-word;
|
|
148
|
+
overflow-wrap: break-word;
|
|
149
|
+
text-align: center;
|
|
150
|
+
line-height: 1.3;
|
|
151
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import "@/index.css";
|
|
2
|
+
|
|
3
|
+
import { mountWidget } from "skybridge/web";
|
|
4
|
+
import { useToolInfo } from "../helpers";
|
|
5
|
+
|
|
6
|
+
function Magic8Ball() {
|
|
7
|
+
const { input, output } = useToolInfo<"magic-8-ball">();
|
|
8
|
+
if (!output) {
|
|
9
|
+
return <div>Shaking...</div>;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
return (
|
|
13
|
+
<div className="container">
|
|
14
|
+
<div className="ball">
|
|
15
|
+
<div className="question">{input.question}</div>
|
|
16
|
+
<div className="answer">{output.answer}</div>
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Magic8Ball;
|
|
23
|
+
|
|
24
|
+
mountWidget(<Magic8Ball />);
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import path from "node:path";
|
|
2
|
+
import react from "@vitejs/plugin-react";
|
|
3
|
+
import { skybridge } from "skybridge/web";
|
|
4
|
+
import { defineConfig, type PluginOption } from "vite";
|
|
5
|
+
|
|
6
|
+
// https://vite.dev/config/
|
|
7
|
+
export default defineConfig({
|
|
8
|
+
plugins: [skybridge() as PluginOption, react()],
|
|
9
|
+
root: __dirname,
|
|
10
|
+
resolve: {
|
|
11
|
+
alias: {
|
|
12
|
+
"@": path.resolve(__dirname, "./src"),
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
});
|