-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcom.slack-mcp.json
More file actions
79 lines (73 loc) · 2.84 KB
/
Copy pathcom.slack-mcp.json
File metadata and controls
79 lines (73 loc) · 2.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.slack-mcp",
"name": "Slack",
"alias": "slack",
"description": "Send and read Slack messages, manage channels, list users, add reactions, and interact with your Slack workspace.",
"icon": "https://avatars.githubusercontent.com/u/6962987?v=4",
"schema_version": "2.1",
"categories": ["communication"],
"tags": ["slack", "messaging", "chat", "channels", "workspace", "collaboration"],
"transport": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-slack"],
"env": {
"SLACK_BOT_TOKEN": "${input:SLACK_BOT_TOKEN}",
"SLACK_TEAM_ID": "${input:SLACK_TEAM_ID}"
},
"metadata": {
"inputs": [
{
"id": "SLACK_BOT_TOKEN",
"label": "Slack Bot Token",
"description": "Bot user OAuth token for your Slack app. Requires scopes: channels:history, channels:read, chat:write, reactions:write, users:read, users.profile:read",
"type": "text",
"required": true,
"secret": true,
"placeholder": "xoxb-your-bot-token-here",
"obtain": {
"url": "https://api.slack.com/apps",
"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-)",
"button_label": "Create Slack App"
}
},
{
"id": "SLACK_TEAM_ID",
"label": "Slack Team ID",
"description": "Your Slack workspace team ID. Found in workspace settings or the workspace URL.",
"type": "text",
"required": true,
"secret": false,
"placeholder": "T0123456789",
"obtain": {
"url": "https://slack.com/help/articles/221769328",
"instructions": "1. Open your Slack workspace in a browser\n2. The team ID is in the URL or available under Settings > Workspace Settings\n3. It starts with 'T' followed by alphanumeric characters",
"button_label": "Find Team ID"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Create a Slack app at https://api.slack.com/apps and get the Bot User OAuth Token"
},
"contributor": {
"name": "Model Context Protocol",
"github": "modelcontextprotocol",
"url": "https://modelcontextprotocol.io"
},
"links": {
"repository": "https://github.com/modelcontextprotocol/servers",
"homepage": "https://slack.com",
"documentation": "https://api.slack.com/docs"
},
"platforms": ["all"],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
}
}