@triedotdev/mcp 1.0.72 → 1.0.73
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.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6267,7 +6267,7 @@ var ResourceManager = class {
|
|
|
6267
6267
|
uri: `ui://trie/${id}`,
|
|
6268
6268
|
name: app.name,
|
|
6269
6269
|
description: app.description,
|
|
6270
|
-
mimeType: "text/html"
|
|
6270
|
+
mimeType: "text/html;profile=mcp-app"
|
|
6271
6271
|
}));
|
|
6272
6272
|
}
|
|
6273
6273
|
/**
|
|
@@ -6283,7 +6283,7 @@ var ResourceManager = class {
|
|
|
6283
6283
|
return {
|
|
6284
6284
|
contents: [{
|
|
6285
6285
|
uri,
|
|
6286
|
-
mimeType: "text/html",
|
|
6286
|
+
mimeType: "text/html;profile=mcp-app",
|
|
6287
6287
|
text: this.getFallbackUIHtml(appId)
|
|
6288
6288
|
}]
|
|
6289
6289
|
};
|
|
@@ -6292,7 +6292,7 @@ var ResourceManager = class {
|
|
|
6292
6292
|
return {
|
|
6293
6293
|
contents: [{
|
|
6294
6294
|
uri,
|
|
6295
|
-
mimeType: "text/html",
|
|
6295
|
+
mimeType: "text/html;profile=mcp-app",
|
|
6296
6296
|
text: content
|
|
6297
6297
|
}]
|
|
6298
6298
|
};
|
|
@@ -6300,7 +6300,7 @@ var ResourceManager = class {
|
|
|
6300
6300
|
return {
|
|
6301
6301
|
contents: [{
|
|
6302
6302
|
uri,
|
|
6303
|
-
mimeType: "text/html",
|
|
6303
|
+
mimeType: "text/html;profile=mcp-app",
|
|
6304
6304
|
text: this.getFallbackUIHtml(appId)
|
|
6305
6305
|
}]
|
|
6306
6306
|
};
|