@gpsglobal-ai/gpsglobal 1.4.9 → 1.4.10

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
@@ -1,5 +1,9 @@
1
1
  # Changelog — gpsglobal
2
2
 
3
+ ## 1.4.10 — 2026-06-21
4
+
5
+ - **`doctor`:** checks both DCR (`registration_endpoint`) and CIMD (`client_id_metadata_document_supported`)
6
+
3
7
  ## 1.4.9 — 2026-06-21
4
8
 
5
9
  - **`doctor`:** checks OAuth AS `registration_endpoint` (DCR) for VS Code zero-config Connect
@@ -84,12 +84,13 @@ export async function runDoctor() {
84
84
  validateStatus: () => true,
85
85
  });
86
86
  const hasDcr = asMeta.status === 200 && Boolean(asMeta.data?.registration_endpoint);
87
+ const hasCimd = asMeta.status === 200 && asMeta.data?.client_id_metadata_document_supported === true;
87
88
  checks.push({
88
- name: 'oauth-dcr',
89
- ok: hasDcr,
90
- detail: hasDcr
91
- ? 'registration_endpoint present (VS Code Connect OK)'
92
- : `AS metadata → ${asMeta.status} (VS Code may ask for manual client ID)`,
89
+ name: 'oauth-registration',
90
+ ok: hasDcr && hasCimd,
91
+ detail: hasDcr && hasCimd
92
+ ? 'DCR + CIMD (SEP-991) supported — VS Code/Copilot zero-config Connect'
93
+ : `AS metadata → ${asMeta.status} (missing DCR or CIMD flags)`,
93
94
  });
94
95
  }
95
96
  catch (err) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpsglobal-ai/gpsglobal",
3
- "version": "1.4.9",
3
+ "version": "1.4.10",
4
4
  "description": "GPS LP fund wiki MCP server — list_funds and get_fund_wiki for Cursor, Copilot, Claude",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",