@jtalk22/slack-mcp 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +35 -0
- package/package.json +13 -8
package/README.md
CHANGED
|
@@ -177,6 +177,41 @@ EOF
|
|
|
177
177
|
launchctl load ~/Library/LaunchAgents/com.slack-mcp-server.plist
|
|
178
178
|
```
|
|
179
179
|
|
|
180
|
+
## Docker
|
|
181
|
+
|
|
182
|
+
Run the server in a container:
|
|
183
|
+
|
|
184
|
+
```bash
|
|
185
|
+
# Pull pre-built image
|
|
186
|
+
docker pull ghcr.io/jtalk22/slack-mcp-server:latest
|
|
187
|
+
|
|
188
|
+
# Or build locally
|
|
189
|
+
docker build -t slack-mcp-server .
|
|
190
|
+
|
|
191
|
+
# Run with environment variables
|
|
192
|
+
docker run -e SLACK_TOKEN=xoxc-your-token -e SLACK_COOKIE=xoxd-your-cookie ghcr.io/jtalk22/slack-mcp-server
|
|
193
|
+
|
|
194
|
+
# Or mount existing token file
|
|
195
|
+
docker run -v ~/.slack-mcp-tokens.json:/root/.slack-mcp-tokens.json ghcr.io/jtalk22/slack-mcp-server
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
For MCP configuration with Docker:
|
|
199
|
+
|
|
200
|
+
```json
|
|
201
|
+
{
|
|
202
|
+
"mcpServers": {
|
|
203
|
+
"slack": {
|
|
204
|
+
"command": "docker",
|
|
205
|
+
"args": ["run", "-i", "--rm", "-e", "SLACK_TOKEN", "-e", "SLACK_COOKIE", "ghcr.io/jtalk22/slack-mcp-server"],
|
|
206
|
+
"env": {
|
|
207
|
+
"SLACK_TOKEN": "xoxc-your-token",
|
|
208
|
+
"SLACK_COOKIE": "xoxd-your-cookie"
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
```
|
|
214
|
+
|
|
180
215
|
## Token Management
|
|
181
216
|
|
|
182
217
|
Tokens are stored in multiple layers for reliability:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jtalk22/slack-mcp",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "MCP server for Slack -
|
|
3
|
+
"version": "1.0.4",
|
|
4
|
+
"description": "MCP server for Slack - Full access to DMs, channels, and messages from Claude. Browser token auth, no OAuth required.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/server.js",
|
|
7
7
|
"bin": {
|
|
@@ -18,21 +18,26 @@
|
|
|
18
18
|
},
|
|
19
19
|
"keywords": [
|
|
20
20
|
"mcp",
|
|
21
|
+
"mcp-server",
|
|
22
|
+
"model-context-protocol",
|
|
21
23
|
"slack",
|
|
24
|
+
"slack-api",
|
|
25
|
+
"slack-mcp",
|
|
22
26
|
"claude",
|
|
27
|
+
"claude-desktop",
|
|
28
|
+
"claude-code",
|
|
23
29
|
"anthropic",
|
|
24
|
-
"model-context-protocol",
|
|
25
30
|
"ai",
|
|
31
|
+
"ai-assistant",
|
|
26
32
|
"llm",
|
|
27
33
|
"chatbot",
|
|
28
|
-
"claude-desktop",
|
|
29
|
-
"claude-code",
|
|
30
|
-
"slack-api",
|
|
31
|
-
"slack-bot",
|
|
32
34
|
"dm",
|
|
33
35
|
"direct-messages",
|
|
36
|
+
"channels",
|
|
34
37
|
"workspace",
|
|
35
|
-
"automation"
|
|
38
|
+
"automation",
|
|
39
|
+
"browser-tokens",
|
|
40
|
+
"no-oauth"
|
|
36
41
|
],
|
|
37
42
|
"funding": {
|
|
38
43
|
"type": "individual",
|