File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,7 +6,10 @@ export async function prepareMcpConfig(
66 repo : string ,
77 branch : string ,
88) : Promise < string > {
9- console . log ( "Preparing MCP config " , { githubToken : ! ! githubToken , slackBotToken : ! ! process . env . SLACK_BOT_TOKEN } ) ;
9+ console . log ( "Preparing MCP config " , {
10+ githubToken : ! ! githubToken ,
11+ slackBotToken : ! ! process . env . SLACK_BOT_TOKEN ,
12+ } ) ;
1013
1114 try {
1215 const mcpConfig = {
@@ -46,14 +49,12 @@ export async function prepareMcpConfig(
4649 env : {
4750 SLACK_BOT_TOKEN : process . env . SLACK_BOT_TOKEN ,
4851 SLACK_TEAM_ID : process . env . SLACK_TEAM_ID ,
49- SLACK_CHANNEL_IDS :
50- process . env . SLACK_CHANNEL_IDS || ''
52+ SLACK_CHANNEL_IDS : process . env . SLACK_CHANNEL_IDS || "" ,
5153 } ,
5254 } ,
5355 }
5456 : { } ) ,
5557 } ,
56-
5758 } ;
5859
5960 return JSON . stringify ( mcpConfig , null , 2 ) ;
You can’t perform that action at this time.
0 commit comments