create-skybridge 0.0.0-dev.89a92cb → 0.0.0-dev.89c05f6
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 +21 -0
- package/dist/index.js +66 -32
- package/package.json +12 -13
- package/template/README.md +13 -2
- package/template/node_modules/.bin/mcp-inspector +21 -0
- package/template/node_modules/.bin/nodemon +21 -0
- package/template/node_modules/.bin/shx +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 +31 -10
- package/template/server/src/index.ts +6 -2
- package/template/server/src/server.ts +0 -5
- package/template/tsconfig.json +23 -0
- package/template/tsconfig.server.json +11 -0
- package/template/web/src/index.css +1 -0
- package/template/web/vite.config.ts +1 -1
- package/template-ecom/README.md +89 -0
- package/template-ecom/alpic.json +4 -0
- package/template-ecom/nodemon.json +5 -0
- package/template-ecom/package.json +40 -0
- package/template-ecom/server/src/index.ts +39 -0
- package/template-ecom/server/src/middleware.ts +54 -0
- package/template-ecom/server/src/server.ts +73 -0
- package/template-ecom/tsconfig.json +23 -0
- package/template-ecom/tsconfig.server.json +11 -0
- package/template-ecom/web/src/helpers.ts +4 -0
- package/template-ecom/web/src/index.css +194 -0
- package/template-ecom/web/src/widgets/ecom-carousel.tsx +181 -0
- package/template-ecom/web/vite.config.ts +15 -0
- package/template/_gitignore +0 -4
- package/template/pnpm-workspace.yaml +0 -7
- package/template/server/nodemon.json +0 -5
- package/template/server/package.json +0 -32
- package/template/server/tsconfig.json +0 -17
- package/template/web/package.json +0 -24
- package/template/web/tsconfig.app.json +0 -34
- package/template/web/tsconfig.json +0 -13
- package/template/web/tsconfig.node.json +0 -26
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Alpic
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/dist/index.js
CHANGED
|
@@ -4,8 +4,11 @@ import path from "node:path";
|
|
|
4
4
|
import { fileURLToPath } from "node:url";
|
|
5
5
|
import * as prompts from "@clack/prompts";
|
|
6
6
|
import mri from "mri";
|
|
7
|
-
const minimumPnpmVersion = 10;
|
|
8
7
|
const defaultProjectName = "skybridge-project";
|
|
8
|
+
const templates = [
|
|
9
|
+
{ value: "default", label: "a minimal implementation" },
|
|
10
|
+
{ value: "ecom", label: "a functional ecommerce carousel" },
|
|
11
|
+
];
|
|
9
12
|
// prettier-ignore
|
|
10
13
|
const helpMessage = `\
|
|
11
14
|
Usage: create-skybridge [OPTION]... [DIRECTORY]
|
|
@@ -16,6 +19,10 @@ Options:
|
|
|
16
19
|
-h, --help show this help message
|
|
17
20
|
--overwrite remove existing files in target directory
|
|
18
21
|
--immediate install dependencies and start development server
|
|
22
|
+
--template <template> use a specific template
|
|
23
|
+
|
|
24
|
+
Available templates:
|
|
25
|
+
${templates.map((t) => ` ${t.value.padEnd(23)} ${t.label}`).join("\n")}
|
|
19
26
|
|
|
20
27
|
Examples:
|
|
21
28
|
create-skybridge my-app
|
|
@@ -24,13 +31,14 @@ Examples:
|
|
|
24
31
|
export async function init(args = process.argv.slice(2)) {
|
|
25
32
|
const argv = mri(args, {
|
|
26
33
|
boolean: ["help", "overwrite", "immediate"],
|
|
27
|
-
alias: { h: "help" },
|
|
34
|
+
alias: { h: "help", t: "template" },
|
|
28
35
|
});
|
|
29
36
|
const argTargetDir = argv._[0]
|
|
30
37
|
? sanitizeTargetDir(String(argv._[0]))
|
|
31
38
|
: undefined;
|
|
32
39
|
const argOverwrite = argv.overwrite;
|
|
33
40
|
const argImmediate = argv.immediate;
|
|
41
|
+
const argTemplate = argv.template;
|
|
34
42
|
const help = argv.help;
|
|
35
43
|
if (help) {
|
|
36
44
|
console.log(helpMessage);
|
|
@@ -61,7 +69,31 @@ export async function init(args = process.argv.slice(2)) {
|
|
|
61
69
|
targetDir = defaultProjectName;
|
|
62
70
|
}
|
|
63
71
|
}
|
|
64
|
-
// 2.
|
|
72
|
+
// 2. Select a template
|
|
73
|
+
let templatePath = "../template";
|
|
74
|
+
if (!argTemplate && interactive) {
|
|
75
|
+
let message = "Please choose a template:";
|
|
76
|
+
const hasInvalidTemplate = argTemplate && !templates.some((t) => t.value === argTemplate);
|
|
77
|
+
if (hasInvalidTemplate) {
|
|
78
|
+
message = `${argTemplate} is not a valid template. Please choose one of the following:`;
|
|
79
|
+
}
|
|
80
|
+
const template = await prompts.select({
|
|
81
|
+
message,
|
|
82
|
+
options: templates.map((t) => ({
|
|
83
|
+
value: t.value,
|
|
84
|
+
label: `${t.value}: ${t.label}`,
|
|
85
|
+
})),
|
|
86
|
+
});
|
|
87
|
+
if (prompts.isCancel(template)) {
|
|
88
|
+
return cancel();
|
|
89
|
+
}
|
|
90
|
+
switch (template) {
|
|
91
|
+
case "ecom":
|
|
92
|
+
templatePath = "../template-ecom";
|
|
93
|
+
break;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
// 3. Handle directory if exist and not empty
|
|
65
97
|
if (fs.existsSync(targetDir) && !isEmpty(targetDir)) {
|
|
66
98
|
let overwrite = argOverwrite ? "yes" : undefined;
|
|
67
99
|
if (!overwrite) {
|
|
@@ -101,25 +133,26 @@ export async function init(args = process.argv.slice(2)) {
|
|
|
101
133
|
}
|
|
102
134
|
}
|
|
103
135
|
const root = path.join(process.cwd(), targetDir);
|
|
104
|
-
//
|
|
136
|
+
// 4. Copy the template
|
|
105
137
|
prompts.log.step(`Copying template...`);
|
|
106
138
|
try {
|
|
107
|
-
const templateDir = fileURLToPath(new URL(
|
|
139
|
+
const templateDir = fileURLToPath(new URL(templatePath, import.meta.url));
|
|
108
140
|
// Copy template to target directory
|
|
109
141
|
fs.cpSync(templateDir, root, {
|
|
110
142
|
recursive: true,
|
|
111
|
-
filter: (src) => !src.endsWith(
|
|
143
|
+
filter: (src) => [".npmrc"].every((file) => !src.endsWith(file)),
|
|
112
144
|
});
|
|
113
|
-
//
|
|
114
|
-
fs.
|
|
145
|
+
// Write .gitignore
|
|
146
|
+
fs.writeFileSync(path.join(root, ".gitignore"), `node_modules/
|
|
147
|
+
dist/
|
|
148
|
+
.env*
|
|
149
|
+
.DS_store`);
|
|
115
150
|
// Update project name in package.json
|
|
116
151
|
const name = path.basename(root);
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
fs.writeFileSync(pkgPath, fixed);
|
|
122
|
-
}
|
|
152
|
+
const pkgPath = path.join(root, "package.json");
|
|
153
|
+
const pkg = fs.readFileSync(pkgPath, "utf-8");
|
|
154
|
+
const fixed = pkg.replace(/apps-sdk-template/g, name);
|
|
155
|
+
fs.writeFileSync(pkgPath, fixed);
|
|
123
156
|
prompts.log.success(`Project created in ${root}`);
|
|
124
157
|
}
|
|
125
158
|
catch (error) {
|
|
@@ -127,12 +160,14 @@ export async function init(args = process.argv.slice(2)) {
|
|
|
127
160
|
console.error(error);
|
|
128
161
|
process.exit(1);
|
|
129
162
|
}
|
|
130
|
-
|
|
163
|
+
const userAgent = process.env.npm_config_user_agent;
|
|
164
|
+
const pkgManager = userAgent?.split(" ")[0]?.split("/")[0] || "npm";
|
|
165
|
+
// 5. Ask about immediate installation
|
|
131
166
|
let immediate = argImmediate;
|
|
132
167
|
if (immediate === undefined) {
|
|
133
168
|
if (interactive) {
|
|
134
169
|
const immediateResult = await prompts.confirm({
|
|
135
|
-
message: `Install with
|
|
170
|
+
message: `Install with ${pkgManager} and start now?`,
|
|
136
171
|
});
|
|
137
172
|
if (prompts.isCancel(immediateResult)) {
|
|
138
173
|
return cancel();
|
|
@@ -143,8 +178,20 @@ export async function init(args = process.argv.slice(2)) {
|
|
|
143
178
|
immediate = false;
|
|
144
179
|
}
|
|
145
180
|
}
|
|
146
|
-
const installCmd = [
|
|
147
|
-
const runCmd = [
|
|
181
|
+
const installCmd = [pkgManager, "install"];
|
|
182
|
+
const runCmd = [pkgManager];
|
|
183
|
+
switch (pkgManager) {
|
|
184
|
+
case "yarn":
|
|
185
|
+
case "pnpm":
|
|
186
|
+
case "bun":
|
|
187
|
+
break;
|
|
188
|
+
case "deno":
|
|
189
|
+
runCmd.push("task");
|
|
190
|
+
break;
|
|
191
|
+
default:
|
|
192
|
+
runCmd.push("run");
|
|
193
|
+
}
|
|
194
|
+
runCmd.push("dev");
|
|
148
195
|
if (!immediate) {
|
|
149
196
|
prompts.outro(`Done! Next steps:
|
|
150
197
|
cd ${targetDir}
|
|
@@ -153,20 +200,7 @@ export async function init(args = process.argv.slice(2)) {
|
|
|
153
200
|
`);
|
|
154
201
|
return;
|
|
155
202
|
}
|
|
156
|
-
|
|
157
|
-
const result = spawnSync("pnpm", ["--version"], { encoding: "utf-8" });
|
|
158
|
-
if (result.error || result.status !== 0) {
|
|
159
|
-
console.error("Error: pnpm is not installed. Please install pnpm first.");
|
|
160
|
-
process.exit(1);
|
|
161
|
-
}
|
|
162
|
-
// check if pnpm major is greater or equal to the one set in package.json packageManager, which should do the trick
|
|
163
|
-
const version = result.stdout.trim();
|
|
164
|
-
const major = Number(version.split(".")[0]);
|
|
165
|
-
if (Number.isNaN(major) || major < minimumPnpmVersion) {
|
|
166
|
-
console.error(`Error: pnpm version ${version} is too old. Minimum required version is ${minimumPnpmVersion}.`);
|
|
167
|
-
process.exit(1);
|
|
168
|
-
}
|
|
169
|
-
prompts.log.step(`Installing dependencies with pnpm...`);
|
|
203
|
+
prompts.log.step(`Installing dependencies with ${pkgManager}...`);
|
|
170
204
|
run(installCmd, {
|
|
171
205
|
stdio: "inherit",
|
|
172
206
|
cwd: root,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-skybridge",
|
|
3
|
-
"version": "0.0.0-dev.
|
|
3
|
+
"version": "0.0.0-dev.89c05f6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Alpic",
|
|
@@ -14,23 +14,22 @@
|
|
|
14
14
|
"files": [
|
|
15
15
|
"index.js",
|
|
16
16
|
"dist",
|
|
17
|
-
"template"
|
|
17
|
+
"template",
|
|
18
|
+
"template-ecom"
|
|
18
19
|
],
|
|
19
|
-
"scripts": {
|
|
20
|
-
"build": "tsc",
|
|
21
|
-
"test": "pnpm run test:unit && pnpm run test:type && pnpm run test:format",
|
|
22
|
-
"test:unit": "vitest run",
|
|
23
|
-
"test:type": "tsc --noEmit",
|
|
24
|
-
"test:format": "biome ci",
|
|
25
|
-
"prepublishOnly": "pnpm run build"
|
|
26
|
-
},
|
|
27
20
|
"dependencies": {
|
|
28
21
|
"@clack/prompts": "^0.11.0",
|
|
29
22
|
"mri": "^1.2.0"
|
|
30
23
|
},
|
|
31
24
|
"devDependencies": {
|
|
32
|
-
"@types/node": "^25.0.3",
|
|
33
25
|
"typescript": "^5.9.3",
|
|
34
|
-
"vitest": "^
|
|
26
|
+
"vitest": "^4.0.16"
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsc && node copyExamples.js",
|
|
30
|
+
"test": "pnpm run test:unit && pnpm run test:type && pnpm run test:format",
|
|
31
|
+
"test:unit": "vitest run",
|
|
32
|
+
"test:type": "tsc --noEmit",
|
|
33
|
+
"test:format": "biome ci"
|
|
35
34
|
}
|
|
36
|
-
}
|
|
35
|
+
}
|
package/template/README.md
CHANGED
|
@@ -6,8 +6,7 @@ A minimal TypeScript template for building OpenAI Apps SDK compatible MCP server
|
|
|
6
6
|
|
|
7
7
|
### Prerequisites
|
|
8
8
|
|
|
9
|
-
- Node.js
|
|
10
|
-
- pnpm (install with `npm install -g pnpm`)
|
|
9
|
+
- Node.js 24+
|
|
11
10
|
- HTTP tunnel such as [ngrok](https://ngrok.com/download)
|
|
12
11
|
|
|
13
12
|
### Local Development
|
|
@@ -15,7 +14,13 @@ A minimal TypeScript template for building OpenAI Apps SDK compatible MCP server
|
|
|
15
14
|
#### 1. Install
|
|
16
15
|
|
|
17
16
|
```bash
|
|
17
|
+
npm install
|
|
18
|
+
# or
|
|
19
|
+
yarn install
|
|
20
|
+
# or
|
|
18
21
|
pnpm install
|
|
22
|
+
# or
|
|
23
|
+
bun install
|
|
19
24
|
```
|
|
20
25
|
|
|
21
26
|
#### 2. Start your local server
|
|
@@ -23,7 +28,13 @@ pnpm install
|
|
|
23
28
|
Run the development server from the root directory:
|
|
24
29
|
|
|
25
30
|
```bash
|
|
31
|
+
npm run dev
|
|
32
|
+
# or
|
|
33
|
+
yarn dev
|
|
34
|
+
# or
|
|
26
35
|
pnpm dev
|
|
36
|
+
# or
|
|
37
|
+
bun dev
|
|
27
38
|
```
|
|
28
39
|
|
|
29
40
|
This command starts an Express server on port 3000. This server packages:
|
|
@@ -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_cfe96c348f18ba1e580ab58ea63930bf/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_cfe96c348f18ba1e580ab58ea63930bf/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_cfe96c348f18ba1e580ab58ea63930bf/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_cfe96c348f18ba1e580ab58ea63930bf/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_cfe96c348f18ba1e580ab58ea63930bf/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_cfe96c348f18ba1e580ab58ea63930bf/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_cfe96c348f18ba1e580ab58ea63930bf/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_cfe96c348f18ba1e580ab58ea63930bf/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_cfe96c348f18ba1e580ab58ea63930bf/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_cfe96c348f18ba1e580ab58ea63930bf/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/shx@0.4.0/node_modules/shx/lib/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/shx@0.4.0/node_modules/shx/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/shx@0.4.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/shx@0.4.0/node_modules/shx/lib/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/shx@0.4.0/node_modules/shx/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/shx@0.4.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/../shx/lib/cli.js" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../shx/lib/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/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.0_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0/node_modules/vite/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.0_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0/node_modules/vite/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.0_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_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/vite@7.3.0_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0/node_modules/vite/bin/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.0_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_tsx@4.21.0/node_modules/vite/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@7.3.0_@types+node@25.0.3_jiti@2.6.1_lightningcss@1.30.2_terser@5.44.1_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/../vite/bin/vite.js" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../vite/bin/vite.js" "$@"
|
|
21
|
+
fi
|
package/template/package.json
CHANGED
|
@@ -4,18 +4,39 @@
|
|
|
4
4
|
"private": true,
|
|
5
5
|
"description": "Alpic MCP Server Template",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"packageManager": "pnpm@10.18.3",
|
|
8
7
|
"scripts": {
|
|
9
|
-
"dev": "
|
|
10
|
-
"build": "
|
|
11
|
-
"start": "
|
|
12
|
-
"inspector": "
|
|
13
|
-
"server:build": "
|
|
14
|
-
"server:start": "
|
|
15
|
-
"web:build": "
|
|
16
|
-
"web:preview": "
|
|
8
|
+
"dev": "nodemon",
|
|
9
|
+
"build": "vite build -c web/vite.config.ts && shx rm -rf server/dist && tsc -p tsconfig.server.json && shx cp -r web/dist server/dist/assets",
|
|
10
|
+
"start": "node server/dist/index.js",
|
|
11
|
+
"inspector": "mcp-inspector http://localhost:3000/mcp",
|
|
12
|
+
"server:build": "tsc -p tsconfig.server.json",
|
|
13
|
+
"server:start": "node server/dist/index.js",
|
|
14
|
+
"web:build": "tsc -b web && vite build -c web/vite.config.ts",
|
|
15
|
+
"web:preview": "vite preview -c web/vite.config.ts"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
19
|
+
"express": "^5.2.1",
|
|
20
|
+
"react": "^19.2.3",
|
|
21
|
+
"react-dom": "^19.2.3",
|
|
22
|
+
"skybridge": ">=0.16.7 <1.0.0",
|
|
23
|
+
"vite": "^7.3.0",
|
|
24
|
+
"zod": "^4.3.5"
|
|
17
25
|
},
|
|
18
26
|
"devDependencies": {
|
|
19
|
-
"
|
|
27
|
+
"@modelcontextprotocol/inspector": "^0.18.0",
|
|
28
|
+
"@skybridge/devtools": ">=0.16.2 <1.0.0",
|
|
29
|
+
"@types/express": "^5.0.6",
|
|
30
|
+
"@types/react": "^19.2.7",
|
|
31
|
+
"@types/react-dom": "^19.2.3",
|
|
32
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
33
|
+
"nodemon": "^3.1.11",
|
|
34
|
+
"shx": "^0.4.0",
|
|
35
|
+
"tsx": "^4.21.0",
|
|
36
|
+
"typescript": "^5.9.3"
|
|
37
|
+
},
|
|
38
|
+
"workspaces": [],
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=24.0.0"
|
|
20
41
|
}
|
|
21
42
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import express, { type Express } from "express";
|
|
2
|
-
|
|
3
|
-
import { widgetsDevServer } from "skybridge/server";
|
|
2
|
+
import { devtoolsStaticServer, widgetsDevServer } from "skybridge/server";
|
|
4
3
|
import type { ViteDevServer } from "vite";
|
|
5
4
|
import { mcp } from "./middleware.js";
|
|
6
5
|
import server from "./server.js";
|
|
@@ -14,6 +13,7 @@ app.use(mcp(server));
|
|
|
14
13
|
const env = process.env.NODE_ENV || "development";
|
|
15
14
|
|
|
16
15
|
if (env !== "production") {
|
|
16
|
+
app.use(await devtoolsStaticServer());
|
|
17
17
|
app.use(await widgetsDevServer());
|
|
18
18
|
}
|
|
19
19
|
|
|
@@ -27,6 +27,10 @@ app.listen(3000, (error) => {
|
|
|
27
27
|
console.log(
|
|
28
28
|
"Make your local server accessible with 'ngrok http 3000' and connect to ChatGPT with URL https://xxxxxx.ngrok-free.app/mcp",
|
|
29
29
|
);
|
|
30
|
+
|
|
31
|
+
if (env !== "production") {
|
|
32
|
+
console.log("Devtools available at http://localhost:3000");
|
|
33
|
+
}
|
|
30
34
|
});
|
|
31
35
|
|
|
32
36
|
process.on("SIGINT", async () => {
|
|
@@ -3,10 +3,6 @@ import { z } from "zod";
|
|
|
3
3
|
|
|
4
4
|
const Answers = [
|
|
5
5
|
"As I see it, yes",
|
|
6
|
-
"Ask again later",
|
|
7
|
-
"Better not tell you now",
|
|
8
|
-
"Cannot predict now",
|
|
9
|
-
"Concentrate and ask again",
|
|
10
6
|
"Don't count on it",
|
|
11
7
|
"It is certain",
|
|
12
8
|
"It is decidedly so",
|
|
@@ -15,7 +11,6 @@ const Answers = [
|
|
|
15
11
|
"My sources say no",
|
|
16
12
|
"Outlook good",
|
|
17
13
|
"Outlook not so good",
|
|
18
|
-
"Reply hazy, try again",
|
|
19
14
|
"Signs point to yes",
|
|
20
15
|
"Very doubtful",
|
|
21
16
|
"Without a doubt",
|
|
@@ -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
|
+
}
|