@absolutejs/mcp 0.26.0 → 0.26.1

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/CHANGELOG.md CHANGED
@@ -6,6 +6,12 @@ This file is generated by `absolute-changelog` from the entries in
6
6
  `changelog/`. Edit an entry, not this file — and add new ones under
7
7
  `changelog/unreleased/`.
8
8
 
9
+ ## 0.26.1 — 2026-09-13
10
+
11
+ ### Fixed
12
+
13
+ - **Recognize the exact VS Code Insiders OAuth redirect alongside stable VS Code; retain unknown-host rejection.** (`registeredMcpProfiles`)
14
+
9
15
  ## 0.26.0 — 2026-09-13
10
16
 
11
17
  ### Added
package/changelog.json CHANGED
@@ -2,6 +2,19 @@
2
2
  "contract": 1,
3
3
  "name": "@absolutejs/mcp",
4
4
  "releases": [
5
+ {
6
+ "changes": [
7
+ {
8
+ "kind": "fixed",
9
+ "summary": "Recognize the exact VS Code Insiders OAuth redirect alongside stable VS Code; retain unknown-host rejection.",
10
+ "symbols": [
11
+ "registeredMcpProfiles"
12
+ ]
13
+ }
14
+ ],
15
+ "date": "2026-09-13",
16
+ "version": "0.26.1"
17
+ },
5
18
  {
6
19
  "changes": [
7
20
  {
package/dist/index.js CHANGED
@@ -2969,7 +2969,7 @@ var registeredMcpProfiles = (redirectUris) => {
2969
2969
  return "direct-mcp";
2970
2970
  if (["vscode:", "vscode-insiders:", "cursor:", "windsurf:"].includes(url.protocol))
2971
2971
  return "direct-mcp";
2972
- if (url.origin === "https://vscode.dev" && url.pathname === "/redirect")
2972
+ if (["https://vscode.dev", "https://insiders.vscode.dev"].includes(url.origin) && url.pathname === "/redirect")
2973
2973
  return "direct-mcp";
2974
2974
  return "unknown";
2975
2975
  } catch {
package/package.json CHANGED
@@ -90,5 +90,5 @@
90
90
  "canary:checkout": "bun canary/checkout.ts"
91
91
  },
92
92
  "types": "./dist/src/index.d.ts",
93
- "version": "0.26.0"
93
+ "version": "0.26.1"
94
94
  }