File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 41114111 "experimental"
41124112 ]
41134113 },
4114- "gitlens.gitkraken.cli .autoInstall.enabled": {
4114+ "gitlens.gitkraken.mcp .autoInstall.enabled": {
41154115 "type": "boolean",
4116- "default": false ,
4117- "markdownDescription": "Specifies whether to automatically install the GitKraken CLI ",
4116+ "default": true ,
4117+ "markdownDescription": "Specifies whether to automatically install the GitKraken MCP ",
41184118 "scope": "window",
4119- "order": 40,
4120- "tags": [
4121- "experimental"
4122- ]
4119+ "order": 40
41234120 },
41244121 "gitlens.terminal.overrideGitEditor": {
41254122 "type": "boolean",
Original file line number Diff line number Diff line change @@ -389,12 +389,16 @@ interface GitCommandsConfig {
389389interface GitKrakenConfig {
390390 readonly activeOrganizationId : string | null ;
391391 readonly cli : GitKrakenCliConfig ;
392+ readonly mcp : GitKrakenMcpConfig ;
392393}
393394
394395interface GitKrakenCliConfig {
395396 readonly integration : {
396397 readonly enabled : boolean ;
397398 } ;
399+ }
400+
401+ interface GitKrakenMcpConfig {
398402 readonly autoInstall : {
399403 readonly enabled : boolean ;
400404 } ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export function mcpExtensionRegistrationAllowed(): boolean {
2525 // TODO: Remove experimental setting for production release
2626 return (
2727 configuration . get ( 'ai.enabled' ) &&
28- configuration . get ( 'gitkraken.cli .autoInstall.enabled' ) &&
28+ configuration . get ( 'gitkraken.mcp .autoInstall.enabled' ) &&
2929 supportsMcpExtensionRegistration ( )
3030 ) ;
3131}
You can’t perform that action at this time.
0 commit comments