create-skybridge 0.0.0-dev.4ad9734 → 0.0.0-dev.4ae43f2

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.
Files changed (85) hide show
  1. package/LICENSE +21 -0
  2. package/dist/index.d.ts +1 -1
  3. package/dist/index.js +354 -110
  4. package/index.js +6 -1
  5. package/package.json +15 -12
  6. package/templates/blank/.dockerignore +4 -0
  7. package/templates/blank/AGENTS.md +1 -0
  8. package/templates/blank/Dockerfile +53 -0
  9. package/templates/blank/README.md +92 -0
  10. package/templates/blank/_gitignore +7 -0
  11. package/templates/blank/alpic.json +3 -0
  12. package/templates/blank/node_modules/.bin/alpic +21 -0
  13. package/templates/blank/node_modules/.bin/sb +21 -0
  14. package/templates/blank/node_modules/.bin/skybridge +21 -0
  15. package/templates/blank/node_modules/.bin/tsc +21 -0
  16. package/templates/blank/node_modules/.bin/tsserver +21 -0
  17. package/templates/blank/node_modules/.bin/tsx +21 -0
  18. package/templates/blank/node_modules/.bin/vite +21 -0
  19. package/templates/blank/package.json +29 -0
  20. package/templates/blank/src/helpers.ts +4 -0
  21. package/templates/blank/src/server.ts +16 -0
  22. package/templates/blank/tsconfig.json +5 -0
  23. package/templates/blank/vite.config.ts +6 -0
  24. package/templates/demo/.dockerignore +4 -0
  25. package/templates/demo/AGENTS.md +1 -0
  26. package/templates/demo/Dockerfile +53 -0
  27. package/templates/demo/README.md +95 -0
  28. package/templates/demo/_gitignore +7 -0
  29. package/templates/demo/alpic.json +3 -0
  30. package/templates/demo/node_modules/.bin/alpic +21 -0
  31. package/templates/demo/node_modules/.bin/sb +21 -0
  32. package/templates/demo/node_modules/.bin/skybridge +21 -0
  33. package/templates/demo/node_modules/.bin/tsc +21 -0
  34. package/templates/demo/node_modules/.bin/tsserver +21 -0
  35. package/templates/demo/node_modules/.bin/tsx +21 -0
  36. package/templates/demo/node_modules/.bin/vite +21 -0
  37. package/templates/demo/package.json +41 -0
  38. package/templates/demo/src/helpers.ts +4 -0
  39. package/templates/demo/src/index.css +59 -0
  40. package/templates/demo/src/server.ts +94 -0
  41. package/templates/demo/src/views/components/doc-link.tsx +22 -0
  42. package/templates/demo/src/views/components/doc.tsx +21 -0
  43. package/templates/demo/src/views/components/nav.tsx +31 -0
  44. package/templates/demo/src/views/components/progress.tsx +35 -0
  45. package/templates/demo/src/views/components/steps/outro.tsx +68 -0
  46. package/templates/demo/src/views/components/steps/state.tsx +47 -0
  47. package/templates/demo/src/views/components/steps/tool-call.tsx +53 -0
  48. package/templates/demo/src/views/components/steps/tool-output.tsx +40 -0
  49. package/templates/demo/src/views/images/mascot/beret.png +0 -0
  50. package/templates/demo/src/views/images/mascot/chapka.png +0 -0
  51. package/templates/demo/src/views/images/mascot/cowboy-hat.png +0 -0
  52. package/templates/demo/src/views/images/mascot/fez.png +0 -0
  53. package/templates/demo/src/views/images/mascot/jester-hat.png +0 -0
  54. package/templates/demo/src/views/images/mascot/mitre.png +0 -0
  55. package/templates/demo/src/views/images/mascot/non-la.png +0 -0
  56. package/templates/demo/src/views/images/mascot/original.png +0 -0
  57. package/templates/demo/src/views/images/mascot/propeller-beanie.png +0 -0
  58. package/templates/demo/src/views/images/mascot/ski-mask.png +0 -0
  59. package/templates/demo/src/views/images/mascot/sombrero.png +0 -0
  60. package/templates/demo/src/views/images/mascot/top-hat.png +0 -0
  61. package/templates/demo/src/views/images/mascot/viking-helmet.png +0 -0
  62. package/templates/demo/src/views/onboarding.tsx +63 -0
  63. package/templates/demo/src/views/use-mascot.ts +60 -0
  64. package/templates/demo/tsconfig.json +11 -0
  65. package/{template/web → templates/demo}/vite.config.ts +3 -4
  66. package/template/README.md +0 -66
  67. package/template/_gitignore +0 -4
  68. package/template/alpic.json +0 -4
  69. package/template/package.json +0 -21
  70. package/template/pnpm-lock.yaml +0 -317
  71. package/template/pnpm-workspace.yaml +0 -7
  72. package/template/server/nodemon.json +0 -5
  73. package/template/server/package.json +0 -34
  74. package/template/server/src/env.ts +0 -12
  75. package/template/server/src/index.ts +0 -34
  76. package/template/server/src/middleware.ts +0 -54
  77. package/template/server/src/server.ts +0 -75
  78. package/template/server/tsconfig.json +0 -17
  79. package/template/web/package.json +0 -24
  80. package/template/web/src/helpers.ts +0 -4
  81. package/template/web/src/index.css +0 -30
  82. package/template/web/src/widgets/magic-8-ball.tsx +0 -22
  83. package/template/web/tsconfig.app.json +0 -34
  84. package/template/web/tsconfig.json +0 -13
  85. package/template/web/tsconfig.node.json +0 -26
@@ -0,0 +1,60 @@
1
+ import { useEffect } from "react";
2
+ import { useViewState } from "skybridge/web";
3
+ import beret from "./images/mascot/beret.png";
4
+ import chapka from "./images/mascot/chapka.png";
5
+ import cowboyHat from "./images/mascot/cowboy-hat.png";
6
+ import fez from "./images/mascot/fez.png";
7
+ import jesterHat from "./images/mascot/jester-hat.png";
8
+ import mitre from "./images/mascot/mitre.png";
9
+ import nonLa from "./images/mascot/non-la.png";
10
+ import original from "./images/mascot/original.png";
11
+ import propellerBeanie from "./images/mascot/propeller-beanie.png";
12
+ import skiMask from "./images/mascot/ski-mask.png";
13
+ import sombrero from "./images/mascot/sombrero.png";
14
+ import topHat from "./images/mascot/top-hat.png";
15
+ import vikingHelmet from "./images/mascot/viking-helmet.png";
16
+
17
+ const Hats = {
18
+ beret,
19
+ chapka,
20
+ "cowboy hat": cowboyHat,
21
+ fez,
22
+ "jester hat": jesterHat,
23
+ mitre,
24
+ "nón lá": nonLa,
25
+ "propeller beanie": propellerBeanie,
26
+ "ski mask": skiMask,
27
+ sombrero,
28
+ "top hat": topHat,
29
+ "viking helmet": vikingHelmet,
30
+ } as const;
31
+
32
+ type HatLabel = keyof typeof Hats;
33
+
34
+ const LABELS = Object.keys(Hats) as HatLabel[];
35
+
36
+ export function useMascot() {
37
+ // useViewState: persist UI state on the host and surface it to the model.
38
+ const [state, setState] = useViewState<{ hat?: HatLabel }>({});
39
+ const { hat } = state;
40
+ const img = hat ? Hats[hat] : original;
41
+
42
+ // Preload all hats once so swaps are instant.
43
+ useEffect(() => {
44
+ for (const src of Object.values(Hats)) {
45
+ new Image().src = src;
46
+ }
47
+ }, []);
48
+
49
+ return {
50
+ img,
51
+ hat,
52
+ changeHat: () => {
53
+ setState((prev) => {
54
+ const currentIndex = prev.hat ? LABELS.indexOf(prev.hat) : -1;
55
+ const next = LABELS[(currentIndex + 1) % LABELS.length];
56
+ return { ...prev, hat: next };
57
+ });
58
+ },
59
+ };
60
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "extends": "skybridge/tsconfig",
3
+
4
+ "compilerOptions": {
5
+ "paths": {
6
+ "@/*": ["./src/*"]
7
+ }
8
+ },
9
+
10
+ "include": ["src", ".skybridge/**/*.d.ts"]
11
+ }
@@ -1,12 +1,11 @@
1
1
  import path from "node:path";
2
+ import tailwindcss from "@tailwindcss/vite";
2
3
  import react from "@vitejs/plugin-react";
3
- import { skybridge } from "skybridge/web";
4
+ import { skybridge } from "skybridge/vite";
4
5
  import { defineConfig } from "vite";
5
6
 
6
- // https://vite.dev/config/
7
7
  export default defineConfig({
8
- plugins: [skybridge(), react()],
9
-
8
+ plugins: [skybridge(), react(), tailwindcss()],
10
9
  resolve: {
11
10
  alias: {
12
11
  "@": path.resolve(__dirname, "./src"),
@@ -1,66 +0,0 @@
1
- # ChatGPT Apps SDK Alpic Starter
2
-
3
- A minimal TypeScript template for building OpenAI Apps SDK compatible MCP servers with widget rendering in ChatGPT.
4
-
5
- ## Getting Started
6
-
7
- ### Prerequisites
8
-
9
- - Node.js 22+
10
- - pnpm (install with `npm install -g pnpm`)
11
- - HTTP tunnel such as [ngrok](https://ngrok.com/download)
12
-
13
- ### Local Development
14
-
15
- #### 1. Install
16
-
17
- ```bash
18
- pnpm install
19
- ```
20
-
21
- #### 2. Start your local server
22
-
23
- Run the development server from the root directory:
24
-
25
- ```bash
26
- pnpm dev
27
- ```
28
-
29
- This command starts an Express server on port 3000. This server packages:
30
-
31
- - an MCP endpoint on `/mcp` (the app backend)
32
- - a React application on Vite HMR dev server (the UI elements to be displayed in ChatGPT)
33
-
34
- #### 3. Connect to ChatGPT
35
-
36
- - ChatGPT requires connectors to be publicly accessible. To expose your server on the Internet, run:
37
- ```bash
38
- ngrok http 3000
39
- ```
40
- - 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`)
41
-
42
- ### Create your first widget
43
-
44
- #### 1. Add a new widget
45
-
46
- - Register a widget in `server/server.ts` with a unique name (e.g., `my-widget`)
47
- - Create a matching React component at `web/src/widgets/my-widget.tsx`. The file name must match the widget name exactly
48
-
49
- #### 2. Edit widgets with Hot Module Replacement (HMR)
50
-
51
- Edit and save components in `web/src/widgets/` — changes appear instantly in ChatGPT
52
-
53
- #### 3. Edit server code
54
-
55
- Modify files in `server/` and reload your ChatGPT connector in **Settings → Connectors → [Your connector] → Reload**
56
-
57
- ## Deploy to Production
58
-
59
- - Use [Alpic](https://alpic.ai/) to deploy your OpenAI App to production
60
- - In ChatGPT, navigate to **Settings → Connectors → Create** and add your MCP server URL (e.g., `https://your-app-name.alpic.live`)
61
-
62
- ## Resources
63
-
64
- - [Apps SDK Documentation](https://developers.openai.com/apps-sdk)
65
- - [Model Context Protocol Documentation](https://modelcontextprotocol.io/)
66
- - [Alpic Documentation](https://docs.alpic.ai/)
@@ -1,4 +0,0 @@
1
- node_modules/
2
- dist/
3
- .env*
4
- .DS_store
@@ -1,4 +0,0 @@
1
- {
2
- "$schema": "https://assets.alpic.ai/alpic.json",
3
- "buildOutputDir": "server/dist"
4
- }
@@ -1,21 +0,0 @@
1
- {
2
- "name": "apps-sdk-template",
3
- "version": "0.0.1",
4
- "private": true,
5
- "description": "Alpic MCP Server Template",
6
- "type": "module",
7
- "packageManager": "pnpm@10.18.3",
8
- "scripts": {
9
- "dev": "pnpm --filter @apps-sdk-template/server dev",
10
- "build": "pnpm web:build && rm -rf server/dist && pnpm --filter=@apps-sdk-template/server --prod deploy server/dist && cp -r web/dist server/dist/assets && pnpm --filter=@apps-sdk-template/server build",
11
- "start": "pnpm server:start",
12
- "inspector": "pnpm --filter @apps-sdk-template/server inspector",
13
- "server:build": "pnpm --filter @apps-sdk-template/server build",
14
- "server:start": "pnpm --filter @apps-sdk-template/server start",
15
- "web:build": "pnpm --filter @apps-sdk-template/web build",
16
- "web:preview": "pnpm --filter @apps-sdk-template/web preview"
17
- },
18
- "devDependencies": {
19
- "tsx": "^4.19.4"
20
- }
21
- }
@@ -1,317 +0,0 @@
1
- lockfileVersion: '9.0'
2
-
3
- settings:
4
- autoInstallPeers: true
5
- excludeLinksFromLockfile: false
6
-
7
- importers:
8
-
9
- .:
10
- devDependencies:
11
- tsx:
12
- specifier: ^4.19.4
13
- version: 4.20.6
14
-
15
- packages:
16
-
17
- '@esbuild/aix-ppc64@0.25.11':
18
- resolution: {integrity: sha512-Xt1dOL13m8u0WE8iplx9Ibbm+hFAO0GsU2P34UNoDGvZYkY8ifSiy6Zuc1lYxfG7svWE2fzqCUmFp5HCn51gJg==}
19
- engines: {node: '>=18'}
20
- cpu: [ppc64]
21
- os: [aix]
22
-
23
- '@esbuild/android-arm64@0.25.11':
24
- resolution: {integrity: sha512-9slpyFBc4FPPz48+f6jyiXOx/Y4v34TUeDDXJpZqAWQn/08lKGeD8aDp9TMn9jDz2CiEuHwfhRmGBvpnd/PWIQ==}
25
- engines: {node: '>=18'}
26
- cpu: [arm64]
27
- os: [android]
28
-
29
- '@esbuild/android-arm@0.25.11':
30
- resolution: {integrity: sha512-uoa7dU+Dt3HYsethkJ1k6Z9YdcHjTrSb5NUy66ZfZaSV8hEYGD5ZHbEMXnqLFlbBflLsl89Zke7CAdDJ4JI+Gg==}
31
- engines: {node: '>=18'}
32
- cpu: [arm]
33
- os: [android]
34
-
35
- '@esbuild/android-x64@0.25.11':
36
- resolution: {integrity: sha512-Sgiab4xBjPU1QoPEIqS3Xx+R2lezu0LKIEcYe6pftr56PqPygbB7+szVnzoShbx64MUupqoE0KyRlN7gezbl8g==}
37
- engines: {node: '>=18'}
38
- cpu: [x64]
39
- os: [android]
40
-
41
- '@esbuild/darwin-arm64@0.25.11':
42
- resolution: {integrity: sha512-VekY0PBCukppoQrycFxUqkCojnTQhdec0vevUL/EDOCnXd9LKWqD/bHwMPzigIJXPhC59Vd1WFIL57SKs2mg4w==}
43
- engines: {node: '>=18'}
44
- cpu: [arm64]
45
- os: [darwin]
46
-
47
- '@esbuild/darwin-x64@0.25.11':
48
- resolution: {integrity: sha512-+hfp3yfBalNEpTGp9loYgbknjR695HkqtY3d3/JjSRUyPg/xd6q+mQqIb5qdywnDxRZykIHs3axEqU6l1+oWEQ==}
49
- engines: {node: '>=18'}
50
- cpu: [x64]
51
- os: [darwin]
52
-
53
- '@esbuild/freebsd-arm64@0.25.11':
54
- resolution: {integrity: sha512-CmKjrnayyTJF2eVuO//uSjl/K3KsMIeYeyN7FyDBjsR3lnSJHaXlVoAK8DZa7lXWChbuOk7NjAc7ygAwrnPBhA==}
55
- engines: {node: '>=18'}
56
- cpu: [arm64]
57
- os: [freebsd]
58
-
59
- '@esbuild/freebsd-x64@0.25.11':
60
- resolution: {integrity: sha512-Dyq+5oscTJvMaYPvW3x3FLpi2+gSZTCE/1ffdwuM6G1ARang/mb3jvjxs0mw6n3Lsw84ocfo9CrNMqc5lTfGOw==}
61
- engines: {node: '>=18'}
62
- cpu: [x64]
63
- os: [freebsd]
64
-
65
- '@esbuild/linux-arm64@0.25.11':
66
- resolution: {integrity: sha512-Qr8AzcplUhGvdyUF08A1kHU3Vr2O88xxP0Tm8GcdVOUm25XYcMPp2YqSVHbLuXzYQMf9Bh/iKx7YPqECs6ffLA==}
67
- engines: {node: '>=18'}
68
- cpu: [arm64]
69
- os: [linux]
70
-
71
- '@esbuild/linux-arm@0.25.11':
72
- resolution: {integrity: sha512-TBMv6B4kCfrGJ8cUPo7vd6NECZH/8hPpBHHlYI3qzoYFvWu2AdTvZNuU/7hsbKWqu/COU7NIK12dHAAqBLLXgw==}
73
- engines: {node: '>=18'}
74
- cpu: [arm]
75
- os: [linux]
76
-
77
- '@esbuild/linux-ia32@0.25.11':
78
- resolution: {integrity: sha512-TmnJg8BMGPehs5JKrCLqyWTVAvielc615jbkOirATQvWWB1NMXY77oLMzsUjRLa0+ngecEmDGqt5jiDC6bfvOw==}
79
- engines: {node: '>=18'}
80
- cpu: [ia32]
81
- os: [linux]
82
-
83
- '@esbuild/linux-loong64@0.25.11':
84
- resolution: {integrity: sha512-DIGXL2+gvDaXlaq8xruNXUJdT5tF+SBbJQKbWy/0J7OhU8gOHOzKmGIlfTTl6nHaCOoipxQbuJi7O++ldrxgMw==}
85
- engines: {node: '>=18'}
86
- cpu: [loong64]
87
- os: [linux]
88
-
89
- '@esbuild/linux-mips64el@0.25.11':
90
- resolution: {integrity: sha512-Osx1nALUJu4pU43o9OyjSCXokFkFbyzjXb6VhGIJZQ5JZi8ylCQ9/LFagolPsHtgw6himDSyb5ETSfmp4rpiKQ==}
91
- engines: {node: '>=18'}
92
- cpu: [mips64el]
93
- os: [linux]
94
-
95
- '@esbuild/linux-ppc64@0.25.11':
96
- resolution: {integrity: sha512-nbLFgsQQEsBa8XSgSTSlrnBSrpoWh7ioFDUmwo158gIm5NNP+17IYmNWzaIzWmgCxq56vfr34xGkOcZ7jX6CPw==}
97
- engines: {node: '>=18'}
98
- cpu: [ppc64]
99
- os: [linux]
100
-
101
- '@esbuild/linux-riscv64@0.25.11':
102
- resolution: {integrity: sha512-HfyAmqZi9uBAbgKYP1yGuI7tSREXwIb438q0nqvlpxAOs3XnZ8RsisRfmVsgV486NdjD7Mw2UrFSw51lzUk1ww==}
103
- engines: {node: '>=18'}
104
- cpu: [riscv64]
105
- os: [linux]
106
-
107
- '@esbuild/linux-s390x@0.25.11':
108
- resolution: {integrity: sha512-HjLqVgSSYnVXRisyfmzsH6mXqyvj0SA7pG5g+9W7ESgwA70AXYNpfKBqh1KbTxmQVaYxpzA/SvlB9oclGPbApw==}
109
- engines: {node: '>=18'}
110
- cpu: [s390x]
111
- os: [linux]
112
-
113
- '@esbuild/linux-x64@0.25.11':
114
- resolution: {integrity: sha512-HSFAT4+WYjIhrHxKBwGmOOSpphjYkcswF449j6EjsjbinTZbp8PJtjsVK1XFJStdzXdy/jaddAep2FGY+wyFAQ==}
115
- engines: {node: '>=18'}
116
- cpu: [x64]
117
- os: [linux]
118
-
119
- '@esbuild/netbsd-arm64@0.25.11':
120
- resolution: {integrity: sha512-hr9Oxj1Fa4r04dNpWr3P8QKVVsjQhqrMSUzZzf+LZcYjZNqhA3IAfPQdEh1FLVUJSiu6sgAwp3OmwBfbFgG2Xg==}
121
- engines: {node: '>=18'}
122
- cpu: [arm64]
123
- os: [netbsd]
124
-
125
- '@esbuild/netbsd-x64@0.25.11':
126
- resolution: {integrity: sha512-u7tKA+qbzBydyj0vgpu+5h5AeudxOAGncb8N6C9Kh1N4n7wU1Xw1JDApsRjpShRpXRQlJLb9wY28ELpwdPcZ7A==}
127
- engines: {node: '>=18'}
128
- cpu: [x64]
129
- os: [netbsd]
130
-
131
- '@esbuild/openbsd-arm64@0.25.11':
132
- resolution: {integrity: sha512-Qq6YHhayieor3DxFOoYM1q0q1uMFYb7cSpLD2qzDSvK1NAvqFi8Xgivv0cFC6J+hWVw2teCYltyy9/m/14ryHg==}
133
- engines: {node: '>=18'}
134
- cpu: [arm64]
135
- os: [openbsd]
136
-
137
- '@esbuild/openbsd-x64@0.25.11':
138
- resolution: {integrity: sha512-CN+7c++kkbrckTOz5hrehxWN7uIhFFlmS/hqziSFVWpAzpWrQoAG4chH+nN3Be+Kzv/uuo7zhX716x3Sn2Jduw==}
139
- engines: {node: '>=18'}
140
- cpu: [x64]
141
- os: [openbsd]
142
-
143
- '@esbuild/openharmony-arm64@0.25.11':
144
- resolution: {integrity: sha512-rOREuNIQgaiR+9QuNkbkxubbp8MSO9rONmwP5nKncnWJ9v5jQ4JxFnLu4zDSRPf3x4u+2VN4pM4RdyIzDty/wQ==}
145
- engines: {node: '>=18'}
146
- cpu: [arm64]
147
- os: [openharmony]
148
-
149
- '@esbuild/sunos-x64@0.25.11':
150
- resolution: {integrity: sha512-nq2xdYaWxyg9DcIyXkZhcYulC6pQ2FuCgem3LI92IwMgIZ69KHeY8T4Y88pcwoLIjbed8n36CyKoYRDygNSGhA==}
151
- engines: {node: '>=18'}
152
- cpu: [x64]
153
- os: [sunos]
154
-
155
- '@esbuild/win32-arm64@0.25.11':
156
- resolution: {integrity: sha512-3XxECOWJq1qMZ3MN8srCJ/QfoLpL+VaxD/WfNRm1O3B4+AZ/BnLVgFbUV3eiRYDMXetciH16dwPbbHqwe1uU0Q==}
157
- engines: {node: '>=18'}
158
- cpu: [arm64]
159
- os: [win32]
160
-
161
- '@esbuild/win32-ia32@0.25.11':
162
- resolution: {integrity: sha512-3ukss6gb9XZ8TlRyJlgLn17ecsK4NSQTmdIXRASVsiS2sQ6zPPZklNJT5GR5tE/MUarymmy8kCEf5xPCNCqVOA==}
163
- engines: {node: '>=18'}
164
- cpu: [ia32]
165
- os: [win32]
166
-
167
- '@esbuild/win32-x64@0.25.11':
168
- resolution: {integrity: sha512-D7Hpz6A2L4hzsRpPaCYkQnGOotdUpDzSGRIv9I+1ITdHROSFUWW95ZPZWQmGka1Fg7W3zFJowyn9WGwMJ0+KPA==}
169
- engines: {node: '>=18'}
170
- cpu: [x64]
171
- os: [win32]
172
-
173
- esbuild@0.25.11:
174
- resolution: {integrity: sha512-KohQwyzrKTQmhXDW1PjCv3Tyspn9n5GcY2RTDqeORIdIJY8yKIF7sTSopFmn/wpMPW4rdPXI0UE5LJLuq3bx0Q==}
175
- engines: {node: '>=18'}
176
- hasBin: true
177
-
178
- fsevents@2.3.3:
179
- resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
180
- engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
181
- os: [darwin]
182
-
183
- get-tsconfig@4.12.0:
184
- resolution: {integrity: sha512-LScr2aNr2FbjAjZh2C6X6BxRx1/x+aTDExct/xyq2XKbYOiG5c0aK7pMsSuyc0brz3ibr/lbQiHD9jzt4lccJw==}
185
-
186
- resolve-pkg-maps@1.0.0:
187
- resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
188
-
189
- tsx@4.20.6:
190
- resolution: {integrity: sha512-ytQKuwgmrrkDTFP4LjR0ToE2nqgy886GpvRSpU0JAnrdBYppuY5rLkRUYPU1yCryb24SsKBTL/hlDQAEFVwtZg==}
191
- engines: {node: '>=18.0.0'}
192
- hasBin: true
193
-
194
- snapshots:
195
-
196
- '@esbuild/aix-ppc64@0.25.11':
197
- optional: true
198
-
199
- '@esbuild/android-arm64@0.25.11':
200
- optional: true
201
-
202
- '@esbuild/android-arm@0.25.11':
203
- optional: true
204
-
205
- '@esbuild/android-x64@0.25.11':
206
- optional: true
207
-
208
- '@esbuild/darwin-arm64@0.25.11':
209
- optional: true
210
-
211
- '@esbuild/darwin-x64@0.25.11':
212
- optional: true
213
-
214
- '@esbuild/freebsd-arm64@0.25.11':
215
- optional: true
216
-
217
- '@esbuild/freebsd-x64@0.25.11':
218
- optional: true
219
-
220
- '@esbuild/linux-arm64@0.25.11':
221
- optional: true
222
-
223
- '@esbuild/linux-arm@0.25.11':
224
- optional: true
225
-
226
- '@esbuild/linux-ia32@0.25.11':
227
- optional: true
228
-
229
- '@esbuild/linux-loong64@0.25.11':
230
- optional: true
231
-
232
- '@esbuild/linux-mips64el@0.25.11':
233
- optional: true
234
-
235
- '@esbuild/linux-ppc64@0.25.11':
236
- optional: true
237
-
238
- '@esbuild/linux-riscv64@0.25.11':
239
- optional: true
240
-
241
- '@esbuild/linux-s390x@0.25.11':
242
- optional: true
243
-
244
- '@esbuild/linux-x64@0.25.11':
245
- optional: true
246
-
247
- '@esbuild/netbsd-arm64@0.25.11':
248
- optional: true
249
-
250
- '@esbuild/netbsd-x64@0.25.11':
251
- optional: true
252
-
253
- '@esbuild/openbsd-arm64@0.25.11':
254
- optional: true
255
-
256
- '@esbuild/openbsd-x64@0.25.11':
257
- optional: true
258
-
259
- '@esbuild/openharmony-arm64@0.25.11':
260
- optional: true
261
-
262
- '@esbuild/sunos-x64@0.25.11':
263
- optional: true
264
-
265
- '@esbuild/win32-arm64@0.25.11':
266
- optional: true
267
-
268
- '@esbuild/win32-ia32@0.25.11':
269
- optional: true
270
-
271
- '@esbuild/win32-x64@0.25.11':
272
- optional: true
273
-
274
- esbuild@0.25.11:
275
- optionalDependencies:
276
- '@esbuild/aix-ppc64': 0.25.11
277
- '@esbuild/android-arm': 0.25.11
278
- '@esbuild/android-arm64': 0.25.11
279
- '@esbuild/android-x64': 0.25.11
280
- '@esbuild/darwin-arm64': 0.25.11
281
- '@esbuild/darwin-x64': 0.25.11
282
- '@esbuild/freebsd-arm64': 0.25.11
283
- '@esbuild/freebsd-x64': 0.25.11
284
- '@esbuild/linux-arm': 0.25.11
285
- '@esbuild/linux-arm64': 0.25.11
286
- '@esbuild/linux-ia32': 0.25.11
287
- '@esbuild/linux-loong64': 0.25.11
288
- '@esbuild/linux-mips64el': 0.25.11
289
- '@esbuild/linux-ppc64': 0.25.11
290
- '@esbuild/linux-riscv64': 0.25.11
291
- '@esbuild/linux-s390x': 0.25.11
292
- '@esbuild/linux-x64': 0.25.11
293
- '@esbuild/netbsd-arm64': 0.25.11
294
- '@esbuild/netbsd-x64': 0.25.11
295
- '@esbuild/openbsd-arm64': 0.25.11
296
- '@esbuild/openbsd-x64': 0.25.11
297
- '@esbuild/openharmony-arm64': 0.25.11
298
- '@esbuild/sunos-x64': 0.25.11
299
- '@esbuild/win32-arm64': 0.25.11
300
- '@esbuild/win32-ia32': 0.25.11
301
- '@esbuild/win32-x64': 0.25.11
302
-
303
- fsevents@2.3.3:
304
- optional: true
305
-
306
- get-tsconfig@4.12.0:
307
- dependencies:
308
- resolve-pkg-maps: 1.0.0
309
-
310
- resolve-pkg-maps@1.0.0: {}
311
-
312
- tsx@4.20.6:
313
- dependencies:
314
- esbuild: 0.25.11
315
- get-tsconfig: 4.12.0
316
- optionalDependencies:
317
- fsevents: 2.3.3
@@ -1,7 +0,0 @@
1
- packages:
2
- - "web"
3
- - "server"
4
- sharedWorkspaceLockfile: false
5
-
6
- catalog:
7
- skybridge: ^0.13.1
@@ -1,5 +0,0 @@
1
- {
2
- "watch": ["src/**/*"],
3
- "ext": "ts,js,json",
4
- "exec": "tsx src/index.ts"
5
- }
@@ -1,34 +0,0 @@
1
- {
2
- "name": "@apps-sdk-template/server",
3
- "version": "0.0.1",
4
- "private": true,
5
- "main": "dist/index.js",
6
- "description": "Alpic MCP Server Template",
7
- "files": [
8
- "dist"
9
- ],
10
- "type": "module",
11
- "scripts": {
12
- "dev": "nodemon",
13
- "build": "tsc",
14
- "start": "node dist/index.js",
15
- "inspector": "mcp-inspector http://localhost:3000/mcp"
16
- },
17
- "dependencies": {
18
- "@modelcontextprotocol/sdk": "^1.24.3",
19
- "@t3-oss/env-core": "^0.13.8",
20
- "dotenv": "^17.2.3",
21
- "express": "^5.1.0",
22
- "skybridge": "catalog:",
23
- "vite": "^7.1.11",
24
- "zod": "^4.1.13"
25
- },
26
- "devDependencies": {
27
- "@modelcontextprotocol/inspector": "^0.17.5",
28
- "@types/express": "^5.0.3",
29
- "@types/node": "^22.15.30",
30
- "nodemon": "^3.1.10",
31
- "tsx": "^4.19.2",
32
- "typescript": "^5.7.2"
33
- }
34
- }
@@ -1,12 +0,0 @@
1
- import "dotenv/config";
2
-
3
- import { createEnv } from "@t3-oss/env-core";
4
- import { z } from "zod";
5
-
6
- export const env = createEnv({
7
- server: {
8
- NODE_ENV: z.enum(["development", "production"]).default("development"),
9
- },
10
- runtimeEnv: process.env,
11
- emptyStringAsUndefined: true,
12
- });
@@ -1,34 +0,0 @@
1
- import express, { type Express } from "express";
2
-
3
- import { widgetsDevServer } from "skybridge/server";
4
- import type { ViteDevServer } from "vite";
5
- import { env } from "./env.js";
6
- import { mcp } from "./middleware.js";
7
- import server from "./server.js";
8
-
9
- const app = express() as Express & { vite: ViteDevServer };
10
-
11
- app.use(express.json());
12
-
13
- app.use(mcp(server));
14
-
15
- if (env.NODE_ENV !== "production") {
16
- app.use(await widgetsDevServer());
17
- }
18
-
19
- app.listen(3000, (error) => {
20
- if (error) {
21
- console.error("Failed to start server:", error);
22
- process.exit(1);
23
- }
24
-
25
- console.log(`Server listening on port 3000 - ${env.NODE_ENV}`);
26
- console.log(
27
- "Make your local server accessible with 'ngrok http 3000' and connect to ChatGPT with URL https://xxxxxx.ngrok-free.app/mcp",
28
- );
29
- });
30
-
31
- process.on("SIGINT", async () => {
32
- console.log("Server shutdown complete");
33
- process.exit(0);
34
- });
@@ -1,54 +0,0 @@
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
- };