We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc7251b commit a56cfedCopy full SHA for a56cfed
deno.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@deco/mcp",
3
- "version": "0.7.0",
+ "version": "0.7.1",
4
"exports": {
5
".": "./mod.ts",
6
"./http": "./mcp/http.ts"
mcp/server.ts
@@ -342,7 +342,7 @@ export function mcpServer<TManifest extends AppManifest>(
342
343
if (isHTMLRequest) {
344
// Return HTML page for browser requests
345
- const currentUrl = c.req.url;
+ const currentUrl = c.req.url.replace(/^http:/, 'https:');
346
347
// Get tools data directly
348
const meta = await deco.meta().then((v) => v?.value);
0 commit comments