Skip to content

Commit 5780834

Browse files
committed
feat(backend): enable deployment and GitHub MCP server installation
1 parent 95cc2e5 commit 5780834

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

services/backend/src/global-settings/deployment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const deploymentSettings: GlobalSettingsModule = {
1212
{
1313
key: 'deployment.enabled',
1414
name: 'Enable Deployment',
15-
defaultValue: false,
15+
defaultValue: true,
1616
type: 'boolean',
1717
description: 'Enable deployment of MCP servers from GitHub repositories',
1818
encrypted: false,

services/backend/src/global-settings/team.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export const teamSettings: GlobalSettingsModule = {
5757
{
5858
key: 'team.allow_github_mcp',
5959
name: 'Allow GitHub MCP Servers',
60-
defaultValue: false,
60+
defaultValue: true,
6161
type: 'boolean',
6262
description: 'Allow teams to install MCP servers directly from GitHub repositories',
6363
encrypted: false,
@@ -66,7 +66,7 @@ export const teamSettings: GlobalSettingsModule = {
6666
{
6767
key: 'team.allow_private_github_repos',
6868
name: 'Allow Private GitHub Repositories',
69-
defaultValue: false,
69+
defaultValue: true,
7070
type: 'boolean',
7171
description: 'Allow teams to install MCP servers from private GitHub repositories',
7272
encrypted: false,

0 commit comments

Comments
 (0)