skybridge 0.0.0-dev.e87d808 → 0.0.0-dev.e8d0af6
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/README.md +1 -0
- package/dist/cli/build-helpers.d.ts +5 -1
- package/dist/cli/build-helpers.js +30 -10
- package/dist/cli/build-helpers.js.map +1 -1
- package/dist/cli/build-helpers.test.js +58 -3
- package/dist/cli/build-helpers.test.js.map +1 -1
- package/dist/cli/build-steps.d.ts +2 -0
- package/dist/cli/build-steps.js +73 -0
- package/dist/cli/build-steps.js.map +1 -0
- package/dist/cli/build-steps.test.d.ts +1 -0
- package/dist/cli/build-steps.test.js +52 -0
- package/dist/cli/build-steps.test.js.map +1 -0
- package/dist/cli/header.d.ts +1 -1
- package/dist/cli/run-plain.d.ts +18 -0
- package/dist/cli/run-plain.js +89 -0
- package/dist/cli/run-plain.js.map +1 -0
- package/dist/cli/use-nodemon.d.ts +14 -0
- package/dist/cli/use-nodemon.js +71 -60
- package/dist/cli/use-nodemon.js.map +1 -1
- package/dist/cli/use-typescript-check.d.ts +8 -2
- package/dist/cli/use-typescript-check.js +70 -67
- package/dist/cli/use-typescript-check.js.map +1 -1
- package/dist/commands/build.d.ts +0 -2
- package/dist/commands/build.js +2 -61
- package/dist/commands/build.js.map +1 -1
- package/dist/commands/dev.d.ts +1 -0
- package/dist/commands/dev.js +33 -3
- package/dist/commands/dev.js.map +1 -1
- package/dist/server/auth/discovery.d.ts +32 -0
- package/dist/server/auth/discovery.js +56 -0
- package/dist/server/auth/discovery.js.map +1 -0
- package/dist/server/auth/discovery.test.d.ts +1 -0
- package/dist/server/auth/discovery.test.js +93 -0
- package/dist/server/auth/discovery.test.js.map +1 -0
- package/dist/server/auth/index.d.ts +18 -0
- package/dist/server/auth/index.js +2 -0
- package/dist/server/auth/index.js.map +1 -0
- package/dist/server/auth/providers/auth0.d.ts +18 -0
- package/dist/server/auth/providers/auth0.js +31 -0
- package/dist/server/auth/providers/auth0.js.map +1 -0
- package/dist/server/auth/providers/auth0.test.d.ts +1 -0
- package/dist/server/auth/providers/auth0.test.js +48 -0
- package/dist/server/auth/providers/auth0.test.js.map +1 -0
- package/dist/server/auth/providers/clerk.d.ts +14 -0
- package/dist/server/auth/providers/clerk.js +16 -0
- package/dist/server/auth/providers/clerk.js.map +1 -0
- package/dist/server/auth/providers/clerk.test.d.ts +1 -0
- package/dist/server/auth/providers/clerk.test.js +28 -0
- package/dist/server/auth/providers/clerk.test.js.map +1 -0
- package/dist/server/auth/providers/custom.d.ts +30 -0
- package/dist/server/auth/providers/custom.js +40 -0
- package/dist/server/auth/providers/custom.js.map +1 -0
- package/dist/server/auth/providers/custom.test.d.ts +1 -0
- package/dist/server/auth/providers/custom.test.js +128 -0
- package/dist/server/auth/providers/custom.test.js.map +1 -0
- package/dist/server/auth/providers/descope.d.ts +15 -0
- package/dist/server/auth/providers/descope.js +35 -0
- package/dist/server/auth/providers/descope.js.map +1 -0
- package/dist/server/auth/providers/descope.test.d.ts +1 -0
- package/dist/server/auth/providers/descope.test.js +39 -0
- package/dist/server/auth/providers/descope.test.js.map +1 -0
- package/dist/server/auth/providers/shared.d.ts +2 -0
- package/dist/server/auth/providers/shared.js +6 -0
- package/dist/server/auth/providers/shared.js.map +1 -0
- package/dist/server/auth/providers/shared.test.d.ts +1 -0
- package/dist/server/auth/providers/shared.test.js +10 -0
- package/dist/server/auth/providers/shared.test.js.map +1 -0
- package/dist/server/auth/providers/stytch.d.ts +12 -0
- package/dist/server/auth/providers/stytch.js +13 -0
- package/dist/server/auth/providers/stytch.js.map +1 -0
- package/dist/server/auth/providers/workos.d.ts +11 -0
- package/dist/server/auth/providers/workos.js +12 -0
- package/dist/server/auth/providers/workos.js.map +1 -0
- package/dist/server/auth/setup.d.ts +4 -0
- package/dist/server/auth/setup.js +51 -0
- package/dist/server/auth/setup.js.map +1 -0
- package/dist/server/auth/setup.test.d.ts +1 -0
- package/dist/server/auth/setup.test.js +185 -0
- package/dist/server/auth/setup.test.js.map +1 -0
- package/dist/server/auth/verify.d.ts +12 -0
- package/dist/server/auth/verify.js +38 -0
- package/dist/server/auth/verify.js.map +1 -0
- package/dist/server/auth/verify.test.d.ts +1 -0
- package/dist/server/auth/verify.test.js +100 -0
- package/dist/server/auth/verify.test.js.map +1 -0
- package/dist/server/express.test.js +31 -0
- package/dist/server/express.test.js.map +1 -1
- package/dist/server/index.d.ts +10 -2
- package/dist/server/index.js +8 -1
- package/dist/server/index.js.map +1 -1
- package/dist/server/requestOrigin.d.ts +7 -0
- package/dist/server/requestOrigin.js +25 -0
- package/dist/server/requestOrigin.js.map +1 -0
- package/dist/server/server.d.ts +54 -8
- package/dist/server/server.js +197 -128
- package/dist/server/server.js.map +1 -1
- package/dist/server/skills-integration.test.d.ts +1 -0
- package/dist/server/skills-integration.test.js +63 -0
- package/dist/server/skills-integration.test.js.map +1 -0
- package/dist/server/skills.d.ts +23 -0
- package/dist/server/skills.js +178 -0
- package/dist/server/skills.js.map +1 -0
- package/dist/server/skills.test.d.ts +1 -0
- package/dist/server/skills.test.js +210 -0
- package/dist/server/skills.test.js.map +1 -0
- package/dist/server/view-name.test-d.d.ts +1 -0
- package/dist/server/view-name.test-d.js +8 -0
- package/dist/server/view-name.test-d.js.map +1 -0
- package/dist/server/view-resource-resolution.test.d.ts +6 -0
- package/dist/server/view-resource-resolution.test.js +171 -0
- package/dist/server/view-resource-resolution.test.js.map +1 -0
- package/dist/test/view.test.js +70 -102
- package/dist/test/view.test.js.map +1 -1
- package/dist/web/bridges/adaptor.d.ts +51 -0
- package/dist/web/bridges/adaptor.js +330 -0
- package/dist/web/bridges/adaptor.js.map +1 -0
- package/dist/web/bridges/adaptor.test.d.ts +1 -0
- package/dist/web/bridges/adaptor.test.js +208 -0
- package/dist/web/bridges/adaptor.test.js.map +1 -0
- package/dist/web/bridges/apps-sdk/bridge.d.ts +6 -2
- package/dist/web/bridges/apps-sdk/bridge.js +15 -4
- package/dist/web/bridges/apps-sdk/bridge.js.map +1 -1
- package/dist/web/bridges/apps-sdk/index.d.ts +0 -1
- package/dist/web/bridges/apps-sdk/index.js +0 -1
- package/dist/web/bridges/apps-sdk/index.js.map +1 -1
- package/dist/web/bridges/get-adaptor.d.ts +4 -4
- package/dist/web/bridges/get-adaptor.js +6 -11
- package/dist/web/bridges/get-adaptor.js.map +1 -1
- package/dist/web/bridges/get-adaptor.test.d.ts +1 -0
- package/dist/web/bridges/get-adaptor.test.js +32 -0
- package/dist/web/bridges/get-adaptor.test.js.map +1 -0
- package/dist/web/bridges/mcp-app/bridge.d.ts +13 -2
- package/dist/web/bridges/mcp-app/bridge.js +46 -4
- package/dist/web/bridges/mcp-app/bridge.js.map +1 -1
- package/dist/web/bridges/mcp-app/bridge.test.d.ts +1 -0
- package/dist/web/bridges/mcp-app/bridge.test.js +17 -0
- package/dist/web/bridges/mcp-app/bridge.test.js.map +1 -0
- package/dist/web/bridges/mcp-app/index.d.ts +0 -1
- package/dist/web/bridges/mcp-app/index.js +0 -1
- package/dist/web/bridges/mcp-app/index.js.map +1 -1
- package/dist/web/bridges/mcp-app/view-tools.test.js +5 -6
- package/dist/web/bridges/mcp-app/view-tools.test.js.map +1 -1
- package/dist/web/bridges/types.d.ts +10 -0
- package/dist/web/bridges/types.js +14 -1
- package/dist/web/bridges/types.js.map +1 -1
- package/dist/web/bridges/types.test.d.ts +1 -0
- package/dist/web/bridges/types.test.js +19 -0
- package/dist/web/bridges/types.test.js.map +1 -0
- package/dist/web/components/modal-provider.d.ts +1 -1
- package/dist/web/components/modal-provider.js +4 -3
- package/dist/web/components/modal-provider.js.map +1 -1
- package/dist/web/create-store.test.js +8 -5
- package/dist/web/create-store.test.js.map +1 -1
- package/dist/web/data-llm.d.ts +1 -1
- package/dist/web/data-llm.test.js +17 -5
- package/dist/web/data-llm.test.js.map +1 -1
- package/dist/web/hooks/use-call-tool.test.js +37 -23
- package/dist/web/hooks/use-call-tool.test.js.map +1 -1
- package/dist/web/hooks/use-display-mode.test.js +56 -20
- package/dist/web/hooks/use-display-mode.test.js.map +1 -1
- package/dist/web/hooks/use-download.test.js +11 -3
- package/dist/web/hooks/use-download.test.js.map +1 -1
- package/dist/web/hooks/use-files.test.js +10 -2
- package/dist/web/hooks/use-files.test.js.map +1 -1
- package/dist/web/hooks/use-layout.test.js +59 -26
- package/dist/web/hooks/use-layout.test.js.map +1 -1
- package/dist/web/hooks/use-open-external.test.js +13 -3
- package/dist/web/hooks/use-open-external.test.js.map +1 -1
- package/dist/web/hooks/use-request-close.test.js +35 -40
- package/dist/web/hooks/use-request-close.test.js.map +1 -1
- package/dist/web/hooks/use-request-modal.test.js +10 -0
- package/dist/web/hooks/use-request-modal.test.js.map +1 -1
- package/dist/web/hooks/use-request-size.test.js +35 -53
- package/dist/web/hooks/use-request-size.test.js.map +1 -1
- package/dist/web/hooks/use-set-open-in-app-url.test.js +28 -8
- package/dist/web/hooks/use-set-open-in-app-url.test.js.map +1 -1
- package/dist/web/hooks/use-tool-info.test.js +37 -27
- package/dist/web/hooks/use-tool-info.test.js.map +1 -1
- package/dist/web/hooks/use-user.test.js +81 -35
- package/dist/web/hooks/use-user.test.js.map +1 -1
- package/dist/web/hooks/use-view-state.test.js +6 -2
- package/dist/web/hooks/use-view-state.test.js.map +1 -1
- package/dist/web/plugin/plugin.js +0 -1
- package/dist/web/plugin/plugin.js.map +1 -1
- package/package.json +22 -20
- package/dist/cli/use-open-tunnel-browser.d.ts +0 -6
- package/dist/cli/use-open-tunnel-browser.js +0 -19
- package/dist/cli/use-open-tunnel-browser.js.map +0 -1
- package/dist/web/bridges/apps-sdk/adaptor.d.ts +0 -29
- package/dist/web/bridges/apps-sdk/adaptor.js +0 -117
- package/dist/web/bridges/apps-sdk/adaptor.js.map +0 -1
- package/dist/web/bridges/mcp-app/adaptor.d.ts +0 -53
- package/dist/web/bridges/mcp-app/adaptor.js +0 -283
- package/dist/web/bridges/mcp-app/adaptor.js.map +0 -1
package/dist/server/server.js
CHANGED
|
@@ -6,9 +6,12 @@ import { Server as SdkServer, } from "@modelcontextprotocol/sdk/server/index.js"
|
|
|
6
6
|
import { McpServer as McpServerBase } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
7
7
|
import { mergeWith, union } from "es-toolkit";
|
|
8
8
|
import express, {} from "express";
|
|
9
|
+
import { setupOAuth } from "./auth/setup.js";
|
|
9
10
|
import { createApp } from "./express.js";
|
|
10
11
|
import { createMiddlewareEntry } from "./metric.js";
|
|
11
12
|
import { buildMiddlewareChain, getHandlerMaps } from "./middleware.js";
|
|
13
|
+
import { resolveServerOrigin } from "./requestOrigin.js";
|
|
14
|
+
import { discoverSkills, registerSkills, SKILLS_EXTENSION_KEY, } from "./skills.js";
|
|
12
15
|
import { templateHelper } from "./templateHelper.js";
|
|
13
16
|
const mergeWithUnion = (target, source) => {
|
|
14
17
|
return mergeWith(target, source, (targetVal, sourceVal) => {
|
|
@@ -17,6 +20,29 @@ const mergeWithUnion = (target, source) => {
|
|
|
17
20
|
}
|
|
18
21
|
});
|
|
19
22
|
};
|
|
23
|
+
const SKILLS_DIR = "src/skills";
|
|
24
|
+
/**
|
|
25
|
+
* Normalize an `x-forwarded-prefix` value into a leading-slash, no-trailing-slash
|
|
26
|
+
* path. Takes the first hop of a comma-separated proxy chain.
|
|
27
|
+
* "/v1/", "v1", "/v1, /internal" → "/v1"; "", "/", undefined → "".
|
|
28
|
+
*/
|
|
29
|
+
function normalizeForwardedPrefix(raw) {
|
|
30
|
+
const firstHop = raw?.split(",")[0]?.trim() ?? "";
|
|
31
|
+
const trimmed = firstHop.replace(/\/+$/, "");
|
|
32
|
+
if (trimmed === "") {
|
|
33
|
+
return "";
|
|
34
|
+
}
|
|
35
|
+
return trimmed.startsWith("/") ? trimmed : `/${trimmed}`;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Drop the query string from a `ui://` view URI, leaving the bare path. The
|
|
39
|
+
* `?v=` cache key is the only query we append, so a plain split is enough and
|
|
40
|
+
* sidesteps `URL` normalization quirks on the non-special `ui:` scheme.
|
|
41
|
+
*/
|
|
42
|
+
function stripQuery(uri) {
|
|
43
|
+
const queryIndex = uri.indexOf("?");
|
|
44
|
+
return queryIndex === -1 ? uri : uri.slice(0, queryIndex);
|
|
45
|
+
}
|
|
20
46
|
/**
|
|
21
47
|
* Coerce a tool handler's return value into an MCP `content` array. Strings
|
|
22
48
|
* become a single `TextContent`; a single block is wrapped in an array;
|
|
@@ -81,13 +107,36 @@ let pendingBuildManifest = null;
|
|
|
81
107
|
export function __setBuildManifest(manifest) {
|
|
82
108
|
pendingBuildManifest = manifest;
|
|
83
109
|
}
|
|
110
|
+
let pendingSkillsManifest = null;
|
|
111
|
+
export function __setSkillsManifest(manifest) {
|
|
112
|
+
pendingSkillsManifest = manifest;
|
|
113
|
+
}
|
|
114
|
+
// Pure and `this`-free so it can run inside the `super(...)` call, before `this`
|
|
115
|
+
// exists — the capability must be present for the `initialize` response.
|
|
116
|
+
function withSkillsCapability(options, skybridgeOptions) {
|
|
117
|
+
if (!skybridgeOptions?.skills) {
|
|
118
|
+
return options;
|
|
119
|
+
}
|
|
120
|
+
return {
|
|
121
|
+
...options,
|
|
122
|
+
capabilities: {
|
|
123
|
+
...options?.capabilities,
|
|
124
|
+
extensions: {
|
|
125
|
+
...options?.capabilities?.extensions,
|
|
126
|
+
[SKILLS_EXTENSION_KEY]: { directoryRead: true },
|
|
127
|
+
},
|
|
128
|
+
},
|
|
129
|
+
};
|
|
130
|
+
}
|
|
84
131
|
export class McpServer extends McpServerBaseOmitted {
|
|
85
132
|
/**
|
|
86
133
|
* The underlying Express app. Use this to extend the HTTP server with
|
|
87
134
|
* custom routes, middleware, or settings — e.g.
|
|
88
135
|
* `server.express.get("/health", ...)`.
|
|
89
136
|
*
|
|
90
|
-
* `express.json()` is pre-applied
|
|
137
|
+
* `express.json()` is pre-applied — tune it via the constructor's third
|
|
138
|
+
* argument, e.g. `new McpServer(info, {}, { json: { limit: "10mb" } })`.
|
|
139
|
+
* Register your handlers before `run()`;
|
|
91
140
|
* after `run()`, dev-mode middleware, the `/mcp` route, and the default
|
|
92
141
|
* error handler are appended in that order.
|
|
93
142
|
*
|
|
@@ -100,15 +149,26 @@ export class McpServer extends McpServerBaseOmitted {
|
|
|
100
149
|
mcpMiddlewareApplied = false;
|
|
101
150
|
claimedViews = new Map();
|
|
102
151
|
viewMetaBuilders = new Map();
|
|
152
|
+
/**
|
|
153
|
+
* Maps a view resource's query-less path to its canonical registered URI
|
|
154
|
+
* (the one carrying the `?v=` cache key). Lets `resources/read` resolve the
|
|
155
|
+
* underlying view no matter which version param the consumer sends, since
|
|
156
|
+
* the param is only a cache key, not part of the resource's identity.
|
|
157
|
+
*/
|
|
158
|
+
viewUriByPath = new Map();
|
|
103
159
|
viteManifest = null;
|
|
104
160
|
serverInfo;
|
|
105
161
|
serverOptions;
|
|
106
|
-
constructor(serverInfo, options) {
|
|
107
|
-
|
|
162
|
+
constructor(serverInfo, options, skybridgeOptions) {
|
|
163
|
+
const mergedOptions = withSkillsCapability(options, skybridgeOptions);
|
|
164
|
+
super(serverInfo, mergedOptions);
|
|
108
165
|
this.serverInfo = serverInfo;
|
|
109
|
-
this.serverOptions =
|
|
166
|
+
this.serverOptions = mergedOptions;
|
|
110
167
|
this.express = express();
|
|
111
|
-
this.express.use(express.json());
|
|
168
|
+
this.express.use(express.json(skybridgeOptions?.json));
|
|
169
|
+
if (skybridgeOptions?.oauth) {
|
|
170
|
+
setupOAuth(this.express, skybridgeOptions.oauth);
|
|
171
|
+
}
|
|
112
172
|
// Pick up the manifest if `dist/__entry.js` primed it before importing
|
|
113
173
|
// user code. Consume-once: clear after the first construction so a
|
|
114
174
|
// subsequent test that doesn't prime can't inherit stale state.
|
|
@@ -118,6 +178,19 @@ export class McpServer extends McpServerBaseOmitted {
|
|
|
118
178
|
this.setViteManifest(pendingBuildManifest);
|
|
119
179
|
pendingBuildManifest = null;
|
|
120
180
|
}
|
|
181
|
+
this.setupSkills(Boolean(skybridgeOptions?.skills));
|
|
182
|
+
}
|
|
183
|
+
setupSkills(enabled) {
|
|
184
|
+
const manifest = pendingSkillsManifest;
|
|
185
|
+
pendingSkillsManifest = null;
|
|
186
|
+
if (!enabled) {
|
|
187
|
+
return;
|
|
188
|
+
}
|
|
189
|
+
const skills = manifest ?? discoverSkills(SKILLS_DIR);
|
|
190
|
+
if (skills.length === 0) {
|
|
191
|
+
console.warn(`skybridge: the "skills" option is enabled but no skills were found in "${SKILLS_DIR}". Add a <name>/SKILL.md there, or remove the option.`);
|
|
192
|
+
}
|
|
193
|
+
registerSkills(this, skills);
|
|
121
194
|
}
|
|
122
195
|
use(pathOrHandler, ...handlers) {
|
|
123
196
|
// Branching is load-bearing: Express's `app.use` overloads can't be
|
|
@@ -190,10 +263,47 @@ export class McpServer extends McpServerBaseOmitted {
|
|
|
190
263
|
return result;
|
|
191
264
|
},
|
|
192
265
|
};
|
|
266
|
+
// Resolve a view's `resources/read` by its query-less path so the
|
|
267
|
+
// underlying asset is served no matter the `?v=` value (stale cache key,
|
|
268
|
+
// no param, etc.). The version param is a cache-busting hint for external
|
|
269
|
+
// consumers; it must not gate resolution. We rewrite the lookup URI to the
|
|
270
|
+
// canonical registered one, then restore the requested URI on the response
|
|
271
|
+
// so the consumer-facing URI is never rewritten.
|
|
272
|
+
const viewReadResolveEntry = {
|
|
273
|
+
filter: "resources/read",
|
|
274
|
+
handler: async (req, _extra, next) => {
|
|
275
|
+
const requested = req.params.uri;
|
|
276
|
+
if (typeof requested !== "string") {
|
|
277
|
+
return next();
|
|
278
|
+
}
|
|
279
|
+
const path = stripQuery(requested);
|
|
280
|
+
const canonical = this.viewUriByPath.get(path);
|
|
281
|
+
if (!canonical) {
|
|
282
|
+
return next();
|
|
283
|
+
}
|
|
284
|
+
req.params.uri = canonical;
|
|
285
|
+
try {
|
|
286
|
+
const result = (await next());
|
|
287
|
+
for (const content of result.contents ?? []) {
|
|
288
|
+
if (typeof content.uri === "string" &&
|
|
289
|
+
stripQuery(content.uri) === stripQuery(canonical)) {
|
|
290
|
+
content.uri = requested;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
return result;
|
|
294
|
+
}
|
|
295
|
+
finally {
|
|
296
|
+
// Restore the shared request params so middleware outer to us never
|
|
297
|
+
// observes the rewritten lookup URI after next() unwinds.
|
|
298
|
+
req.params.uri = requested;
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
};
|
|
193
302
|
const monitoringEntry = createMiddlewareEntry();
|
|
194
303
|
const entries = [
|
|
195
304
|
...(monitoringEntry ? [monitoringEntry] : []),
|
|
196
305
|
viewListMetaEntry,
|
|
306
|
+
viewReadResolveEntry,
|
|
197
307
|
...this.mcpMiddlewareEntries,
|
|
198
308
|
];
|
|
199
309
|
if (entries.length === 0) {
|
|
@@ -322,27 +432,12 @@ export class McpServer extends McpServerBaseOmitted {
|
|
|
322
432
|
return Array.isArray(val) ? val[0] : val;
|
|
323
433
|
};
|
|
324
434
|
const isClaude = header("user-agent") === "Claude-User";
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
serverUrl = `${proto}://${forwardedHost}`;
|
|
332
|
-
}
|
|
333
|
-
else if (origin) {
|
|
334
|
-
serverUrl = origin;
|
|
335
|
-
}
|
|
336
|
-
else if (host) {
|
|
337
|
-
const proto = ["127.0.0.1:", "localhost:"].some((p) => host.startsWith(p))
|
|
338
|
-
? "http"
|
|
339
|
-
: "https";
|
|
340
|
-
serverUrl = `${proto}://${host}`;
|
|
341
|
-
}
|
|
342
|
-
else {
|
|
343
|
-
const devPort = process.env.__PORT || "3000";
|
|
344
|
-
serverUrl = `http://localhost:${devPort}`;
|
|
345
|
-
}
|
|
435
|
+
const serverUrl = resolveServerOrigin(header);
|
|
436
|
+
// Path prefix the proxy routed this request under (e.g. `foo.com/v1`). Read
|
|
437
|
+
// per-request so one process can serve many hosts/prefixes at once: the
|
|
438
|
+
// origin is recovered from x-forwarded-host, the prefix from
|
|
439
|
+
// x-forwarded-prefix. Empty when served at the origin root.
|
|
440
|
+
const assetsBasePath = normalizeForwardedPrefix(header("x-forwarded-prefix"));
|
|
346
441
|
const connectDomains = [serverUrl];
|
|
347
442
|
if (!isProduction) {
|
|
348
443
|
const wsUrl = new URL(serverUrl);
|
|
@@ -363,114 +458,77 @@ export class McpServer extends McpServerBaseOmitted {
|
|
|
363
458
|
.slice(0, 32);
|
|
364
459
|
contentMetaOverrides = { domain: `${hash}.claudemcpcontent.com` };
|
|
365
460
|
}
|
|
366
|
-
return { serverUrl, connectDomains, contentMetaOverrides };
|
|
461
|
+
return { serverUrl, assetsBasePath, connectDomains, contentMetaOverrides };
|
|
367
462
|
}
|
|
368
463
|
registerViewResources(toolName, view, toolMeta) {
|
|
369
|
-
const hosts = view.hosts ?? ["apps-sdk", "mcp-app"];
|
|
370
464
|
// Append a content-derived version param so hosts (e.g. ChatGPT) bust
|
|
371
465
|
// their cache when the bundle changes, but keep the URI stable across
|
|
372
466
|
// `tools/list` calls when the bundle hasn't changed.
|
|
373
467
|
const versionParam = this.computeViewVersionParam(view.component);
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
"openai/widgetDomain": domain,
|
|
386
|
-
"openai/widgetDescription": view.description,
|
|
387
|
-
};
|
|
388
|
-
const fromView = {
|
|
389
|
-
"openai/widgetCSP": {
|
|
390
|
-
resource_domains: view.csp?.resourceDomains,
|
|
391
|
-
connect_domains: view.csp?.connectDomains,
|
|
392
|
-
frame_domains: view.csp?.frameDomains,
|
|
393
|
-
redirect_domains: view.csp?.redirectDomains,
|
|
394
|
-
},
|
|
395
|
-
"openai/widgetDomain": view.domain,
|
|
396
|
-
"openai/widgetPrefersBorder": view.prefersBorder,
|
|
397
|
-
};
|
|
398
|
-
const base = mergeWithUnion(mergeWithUnion(defaults, fromView), {
|
|
399
|
-
"openai/widgetDomain": overrides.domain,
|
|
400
|
-
});
|
|
401
|
-
if (view._meta) {
|
|
402
|
-
return { ...base, ...view._meta };
|
|
403
|
-
}
|
|
404
|
-
return base;
|
|
405
|
-
},
|
|
406
|
-
};
|
|
407
|
-
this.registerViewResource({
|
|
408
|
-
name: toolName,
|
|
409
|
-
viewResource,
|
|
410
|
-
view,
|
|
411
|
-
});
|
|
412
|
-
toolMeta["openai/outputTemplate"] = viewResource.uri;
|
|
413
|
-
}
|
|
414
|
-
if (hosts.includes("mcp-app")) {
|
|
415
|
-
const viewResource = {
|
|
416
|
-
hostType: "mcp-app",
|
|
417
|
-
uri: `ui://views/ext-apps/${view.component}.html${versionParam}`,
|
|
418
|
-
mimeType: "text/html;profile=mcp-app",
|
|
419
|
-
buildContentMeta: ({ resourceDomains, connectDomains, domain, baseUriDomains }, overrides) => {
|
|
420
|
-
const defaults = {
|
|
421
|
-
ui: {
|
|
422
|
-
csp: {
|
|
423
|
-
resourceDomains,
|
|
424
|
-
connectDomains,
|
|
425
|
-
baseUriDomains,
|
|
426
|
-
},
|
|
427
|
-
domain,
|
|
468
|
+
const viewResource = {
|
|
469
|
+
hostType: "mcp-app",
|
|
470
|
+
uri: `ui://views/ext-apps/${view.component}.html${versionParam}`,
|
|
471
|
+
mimeType: "text/html;profile=mcp-app",
|
|
472
|
+
buildContentMeta: ({ resourceDomains, connectDomains, domain, baseUriDomains }, overrides) => {
|
|
473
|
+
const defaults = {
|
|
474
|
+
ui: {
|
|
475
|
+
csp: {
|
|
476
|
+
resourceDomains,
|
|
477
|
+
connectDomains,
|
|
478
|
+
baseUriDomains,
|
|
428
479
|
},
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
480
|
+
domain,
|
|
481
|
+
},
|
|
482
|
+
};
|
|
483
|
+
const fromView = {
|
|
484
|
+
ui: {
|
|
485
|
+
...(view.description && { description: view.description }),
|
|
486
|
+
...(view.prefersBorder !== undefined && {
|
|
487
|
+
prefersBorder: view.prefersBorder,
|
|
488
|
+
}),
|
|
489
|
+
...(view.domain && { domain: view.domain }),
|
|
490
|
+
csp: {
|
|
491
|
+
...(view.csp?.resourceDomains && {
|
|
492
|
+
resourceDomains: view.csp.resourceDomains,
|
|
493
|
+
}),
|
|
494
|
+
...(view.csp?.connectDomains && {
|
|
495
|
+
connectDomains: view.csp.connectDomains,
|
|
496
|
+
}),
|
|
497
|
+
...(view.csp?.frameDomains && {
|
|
498
|
+
frameDomains: view.csp.frameDomains,
|
|
499
|
+
}),
|
|
500
|
+
...(view.csp?.baseUriDomains && {
|
|
501
|
+
baseUriDomains: view.csp.baseUriDomains,
|
|
435
502
|
}),
|
|
436
|
-
...(view.domain && { domain: view.domain }),
|
|
437
|
-
csp: {
|
|
438
|
-
...(view.csp?.resourceDomains && {
|
|
439
|
-
resourceDomains: view.csp.resourceDomains,
|
|
440
|
-
}),
|
|
441
|
-
...(view.csp?.connectDomains && {
|
|
442
|
-
connectDomains: view.csp.connectDomains,
|
|
443
|
-
}),
|
|
444
|
-
...(view.csp?.frameDomains && {
|
|
445
|
-
frameDomains: view.csp.frameDomains,
|
|
446
|
-
}),
|
|
447
|
-
...(view.csp?.baseUriDomains && {
|
|
448
|
-
baseUriDomains: view.csp.baseUriDomains,
|
|
449
|
-
}),
|
|
450
|
-
...(view.csp?.redirectDomains && {
|
|
451
|
-
redirectDomains: view.csp.redirectDomains,
|
|
452
|
-
}),
|
|
453
|
-
},
|
|
454
503
|
},
|
|
455
|
-
}
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
504
|
+
},
|
|
505
|
+
};
|
|
506
|
+
const ui = mergeWithUnion(mergeWithUnion(defaults, fromView), {
|
|
507
|
+
ui: overrides,
|
|
508
|
+
});
|
|
509
|
+
const base = {
|
|
510
|
+
...ui,
|
|
511
|
+
...(view.description && {
|
|
512
|
+
"openai/widgetDescription": view.description,
|
|
513
|
+
}),
|
|
514
|
+
...(view.csp?.redirectDomains && {
|
|
515
|
+
"openai/widgetCSP": { redirect_domains: view.csp.redirectDomains },
|
|
516
|
+
}),
|
|
517
|
+
};
|
|
518
|
+
if (view._meta) {
|
|
519
|
+
return { ...base, ...view._meta };
|
|
520
|
+
}
|
|
521
|
+
return base;
|
|
522
|
+
},
|
|
523
|
+
};
|
|
524
|
+
this.registerViewResource({ name: toolName, viewResource, view });
|
|
525
|
+
// Advertise via the MCP Apps standard pointer only — ChatGPT renders from
|
|
526
|
+
// ui.resourceUri (verified), and not emitting openai/outputTemplate lets us
|
|
527
|
+
// retire the legacy apps-sdk resource later. The legacy apps-sdk URL is still
|
|
528
|
+
// served (see registerViewResource) so already-published apps keep resolving.
|
|
529
|
+
// @ts-expect-error - For backwards compatibility with Claude current implementation of the specs
|
|
530
|
+
toolMeta["ui/resourceUri"] = viewResource.uri;
|
|
531
|
+
toolMeta.ui = { ...toolMeta.ui, resourceUri: viewResource.uri };
|
|
474
532
|
}
|
|
475
533
|
registerViewResource({ name, viewResource, view, }) {
|
|
476
534
|
const { hostType, uri: viewUri, mimeType, buildContentMeta } = viewResource;
|
|
@@ -484,19 +542,25 @@ export class McpServer extends McpServerBaseOmitted {
|
|
|
484
542
|
}, contentMetaOverrides);
|
|
485
543
|
};
|
|
486
544
|
this.viewMetaBuilders.set(viewUri, buildMeta);
|
|
545
|
+
this.viewUriByPath.set(stripQuery(viewUri), viewUri);
|
|
546
|
+
this.serveLegacyAppsSdkUrl(view.component, viewUri);
|
|
487
547
|
this.registerResource(name, viewUri, { description: view.description }, async (uri, extra) => {
|
|
488
548
|
const isProduction = process.env.NODE_ENV === "production";
|
|
489
|
-
const { serverUrl } = this.resolveViewRequestContext(extra);
|
|
549
|
+
const { serverUrl, assetsBasePath } = this.resolveViewRequestContext(extra);
|
|
550
|
+
// The view resolves all assets (template imports + runtime lazy chunks
|
|
551
|
+
// via `window.skybridge.serverUrl`) against this base, so it carries the
|
|
552
|
+
// proxy path prefix. CSP domains in `buildMeta` stay the bare origin.
|
|
553
|
+
const viewBase = `${serverUrl}${assetsBasePath}`;
|
|
490
554
|
const html = isProduction
|
|
491
555
|
? templateHelper.renderProduction({
|
|
492
556
|
hostType,
|
|
493
|
-
serverUrl,
|
|
557
|
+
serverUrl: viewBase,
|
|
494
558
|
viewFile: this.lookupViewFile(view.component),
|
|
495
559
|
styleFile: this.lookupDistFile("style.css") ?? "",
|
|
496
560
|
})
|
|
497
561
|
: templateHelper.renderDevelopment({
|
|
498
562
|
hostType,
|
|
499
|
-
serverUrl,
|
|
563
|
+
serverUrl: viewBase,
|
|
500
564
|
viewName: view.component,
|
|
501
565
|
});
|
|
502
566
|
return {
|
|
@@ -506,6 +570,11 @@ export class McpServer extends McpServerBaseOmitted {
|
|
|
506
570
|
};
|
|
507
571
|
});
|
|
508
572
|
}
|
|
573
|
+
serveLegacyAppsSdkUrl(component, canonicalUri) {
|
|
574
|
+
this.viewUriByPath.set(`ui://views/apps-sdk/${component}.html`, canonicalUri);
|
|
575
|
+
this.viewUriByPath.set(`ui://widgets/apps-sdk/${component}.html`, canonicalUri);
|
|
576
|
+
this.viewUriByPath.set(`ui://widgets/ext-apps/${component}.html`, canonicalUri);
|
|
577
|
+
}
|
|
509
578
|
wrapHandler(cb, { attachViewUUID }) {
|
|
510
579
|
return async (args, extra) => {
|
|
511
580
|
const result = await cb(args, extra);
|