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 7a5843c commit f1e1f6fCopy full SHA for f1e1f6f
core/util/GlobalContext.ts
@@ -1,6 +1,10 @@
1
import fs from "node:fs";
2
3
import { ModelRole } from "@continuedev/config-yaml";
4
+import {
5
+ OAuthClientInformationFull,
6
+ OAuthTokens,
7
+} from "@modelcontextprotocol/sdk/shared/auth.js";
8
9
import { SiteIndexingConfig } from "..";
10
import {
@@ -42,6 +46,13 @@ export type GlobalContextType = {
42
46
shownDeprecatedProviderWarnings: {
43
47
[providerTitle: string]: boolean;
44
48
};
49
+ mcpOauthStorage: {
50
+ [serverUrl: string]: {
51
+ clientInformation?: OAuthClientInformationFull;
52
+ tokens?: OAuthTokens;
53
+ codeVerifier?: string;
54
+ };
55
45
56
57
58
/**
0 commit comments