|
3 | 3 | "id": "com.slack-mcp", |
4 | 4 | "name": "Slack", |
5 | 5 | "alias": "slack", |
6 | | - "description": "Read and send Slack messages, manage channels, and interact with your Slack workspace.", |
7 | | - "icon": "\ud83d\udcac", |
| 6 | + "description": "Send and read Slack messages, manage channels, list users, add reactions, and interact with your Slack workspace.", |
| 7 | + "icon": "https://avatars.githubusercontent.com/u/6962987?v=4", |
8 | 8 | "schema_version": "2.1", |
9 | 9 | "categories": ["communication"], |
10 | 10 | "tags": ["slack", "messaging", "chat", "channels", "workspace", "collaboration"], |
11 | 11 |
|
12 | 12 | "transport": { |
13 | 13 | "type": "stdio", |
14 | 14 | "command": "npx", |
15 | | - "args": ["-y", "@anthropic/slack-mcp-server"], |
| 15 | + "args": ["-y", "@modelcontextprotocol/server-slack"], |
16 | 16 | "env": { |
17 | 17 | "SLACK_BOT_TOKEN": "${input:SLACK_BOT_TOKEN}", |
18 | 18 | "SLACK_TEAM_ID": "${input:SLACK_TEAM_ID}" |
|
22 | 22 | { |
23 | 23 | "id": "SLACK_BOT_TOKEN", |
24 | 24 | "label": "Slack Bot Token", |
25 | | - "description": "Bot user OAuth token for your Slack app", |
| 25 | + "description": "Bot user OAuth token for your Slack app. Requires scopes: channels:history, channels:read, chat:write, reactions:write, users:read, users.profile:read", |
26 | 26 | "type": "password", |
27 | 27 | "required": true, |
28 | 28 | "secret": true, |
29 | | - "placeholder": "xoxb-...", |
| 29 | + "placeholder": "xoxb-your-bot-token-here", |
30 | 30 | "obtain": { |
31 | 31 | "url": "https://api.slack.com/apps", |
32 | | - "instructions": "1. Go to api.slack.com/apps and create or select your app\n2. Navigate to OAuth & Permissions\n3. Add required bot scopes (channels:read, chat:write, etc.)\n4. Install the app to your workspace\n5. Copy the Bot User OAuth Token (starts with xoxb-)", |
| 32 | + "instructions": "1. Go to api.slack.com/apps and create or select your app\n2. Navigate to OAuth & Permissions\n3. Add bot scopes: channels:history, channels:read, chat:write, reactions:write, users:read, users.profile:read\n4. Install the app to your workspace\n5. Copy the Bot User OAuth Token (starts with xoxb-)", |
33 | 33 | "button_label": "Create Slack App" |
34 | 34 | } |
35 | 35 | }, |
36 | 36 | { |
37 | 37 | "id": "SLACK_TEAM_ID", |
38 | 38 | "label": "Slack Team ID", |
39 | | - "description": "Your Slack workspace team ID", |
| 39 | + "description": "Your Slack workspace team ID. Found in workspace settings or the workspace URL.", |
40 | 40 | "type": "text", |
41 | 41 | "required": true, |
42 | 42 | "secret": false, |
|
57 | 57 | }, |
58 | 58 |
|
59 | 59 | "contributor": { |
60 | | - "name": "Slack", |
61 | | - "github": "slackapi", |
62 | | - "url": "https://slack.com" |
| 60 | + "name": "Model Context Protocol", |
| 61 | + "github": "modelcontextprotocol", |
| 62 | + "url": "https://modelcontextprotocol.io" |
63 | 63 | }, |
64 | 64 |
|
65 | 65 | "links": { |
|
72 | 72 |
|
73 | 73 | "capabilities": { |
74 | 74 | "tools": true, |
75 | | - "resources": true, |
| 75 | + "resources": false, |
76 | 76 | "prompts": false, |
77 | 77 | "read_only_mode": false |
78 | 78 | } |
|
0 commit comments