The Slack MCP Server provides a bridge between Claude and Slack workspaces, allowing the AI to interact with channels, messages, threads, and users. This server implements the Model Context Protocol to give Claude the ability to list channels, post messages, reply to threads, add reactions, view message history, and access user information. With this integration, Claude can become an active participant in your Slack workspace, helping with communication, information retrieval, and workflow automation. The server handles all the necessary authentication and API interactions, making it simple to extend Claude's capabilities into your team's Slack environment.
The Slack MCP Server enables Claude to interact with Slack workspaces through a set of powerful tools. This integration allows Claude to perform various actions within Slack, such as posting messages, replying to threads, adding reactions, and retrieving information about channels and users.
Navigate to "OAuth & Permissions" in your Slack App settings and add these scopes:
channels:history
- View messages and other content in public channelschannels:read
- View basic channel informationchat:write
- Send messages as the appreactions:write
- Add emoji reactions to messagesusers:read
- View users and their basic informationxoxb-
T
) from your Slack URL or by following Slack's guidanceAdd the Slack MCP Server to your claude_desktop_config.json
file using one of the following methods:
{
"mcpServers": {
"slack": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-slack"
],
"env": {
"SLACK_BOT_TOKEN": "xoxb-your-bot-token",
"SLACK_TEAM_ID": "T01234567"
}
}
}
}
{
"mcpServers": {
"slack": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"SLACK_BOT_TOKEN",
"-e",
"SLACK_TEAM_ID",
"mcp/slack"
],
"env": {
"SLACK_BOT_TOKEN": "xoxb-your-bot-token",
"SLACK_TEAM_ID": "T01234567"
}
}
}
}
If you prefer to build the Docker image yourself:
docker build -t mcp/slack -f src/slack/Dockerfile .
If you encounter permission errors or other issues:
To post a message to a Slack channel, Claude can use the slack_post_message
tool with the channel ID and message text.
Claude can get recent messages from a channel using the slack_get_channel_history
tool with the channel ID and optional limit parameter.
Claude can add emoji reactions to messages using the slack_add_reaction
tool with the channel ID, message timestamp, and emoji name.
The Slack MCP Server is licensed under the MIT License, allowing free use, modification, and distribution subject to the terms and conditions of the license.