Slack MCP Server
by Anthropic ยท โญ 2.1k stars ยท updated 2 months ago
Full Slack workspace integration. Search messages, post to channels, list users, manage workflows โ complete Slack automation for AI agents.
88
Very Good
Quality Score Breakdown
maintenance88/100
community90/100
documentation87/100
compatibility87/100
Use Cases
- โpost Slack messages
- โsearch channels
- โlist workspace members
- โmanage workflows
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"slack": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-slack"
],
"env": {
"SLACK_BOT_TOKEN": "xoxb-YOUR-TOKEN",
"SLACK_TEAM_ID": "YOUR_TEAM_ID"
}
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"slack": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-slack"
],
"env": {
"SLACK_BOT_TOKEN": "xoxb-YOUR-TOKEN",
"SLACK_TEAM_ID": "YOUR_TEAM_ID"
}
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"slack": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-slack"
],
"env": {
"SLACK_BOT_TOKEN": "xoxb-YOUR-TOKEN",
"SLACK_TEAM_ID": "YOUR_TEAM_ID"
}
}
}
}
}