File tree Expand file tree Collapse file tree 3 files changed +19
-6
lines changed Expand file tree Collapse file tree 3 files changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -140,9 +140,17 @@ registry:
140
140
- name : slack_reply_to_thread
141
141
secrets :
142
142
- name : slack.bot_token
143
- - name : slack.team_id
144
143
prompts : 0
145
144
resources : {}
145
+ config :
146
+ - name : slack
147
+ description : Configure the connection to Slack
148
+ type : object
149
+ properties :
150
+ channel_ids :
151
+ type : string
152
+ team_id :
153
+ type : string
146
154
redis :
147
155
description : Access to Redis database operations.
148
156
ref : github:docker/labs-ai-tools-for-devs?ref=main&path=prompts/mcp/redis.md
Original file line number Diff line number Diff line change @@ -108,14 +108,17 @@ Parameters|Type|Description
108
108
" -i" ,
109
109
" --rm" ,
110
110
" -e" ,
111
- " SLACK_BOT_TOKEN" ,
112
- " -e" ,
113
111
" SLACK_TEAM_ID" ,
112
+ " -e" ,
113
+ " SLACK_CHANNEL_IDS" ,
114
+ " -e" ,
115
+ " SLACK_BOT_TOKEN" ,
114
116
" mcp/slack"
115
117
],
116
118
"env" : {
117
- "SLACK_BOT_TOKEN" : " xoxb-your-bot-token" ,
118
- "SLACK_TEAM_ID" : " T01234567"
119
+ "SLACK_TEAM_ID" : " T01234567" ,
120
+ "SLACK_CHANNEL_IDS" : " C01234567, C76543210" ,
121
+ "SLACK_BOT_TOKEN" : " xoxb-your-bot-token"
119
122
}
120
123
}
121
124
}
Original file line number Diff line number Diff line change 5
5
workdir : /app
6
6
secrets :
7
7
slack.bot_token : SLACK_BOT_TOKEN
8
- slack.team_id : SLACK_TEAM_ID
8
+ environment :
9
+ SLACK_TEAM_ID : " {{slack.team_id}}"
10
+ SLACK_CHANNEL_IDS : " {{slack.channel_ids}}"
9
11
source :
10
12
url : https://github.com/modelcontextprotocol/servers/tree/2025.4.6
11
13
---
You can’t perform that action at this time.
0 commit comments