Enables comprehensive interaction with Slack workspaces, including channel management (create, archive, join, list), messaging operations (post, reply, update, delete, reactions), direct messaging, searching messages and files, and user management (list users, check presence, lookup by email).
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Slack MCP Serverlist all channels in the workspace"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Slack MCP Server
A comprehensive Model Context Protocol (MCP) server for Slack API integration. This server enables AI assistants like Claude to interact with your Slack workspace, including managing channels, sending messages, searching content, and more.
Features
Channel Management
List all accessible channels (public/private)
Get channel information and details
Create new channels
Archive channels
Join/leave channels
Set channel topics
Fetch channel message history
Messaging
Post messages to channels
Reply to message threads
Update and delete messages
Add and remove emoji reactions
Get message reactions
Direct Messages (DMs)
Send direct messages to users
List DM and group DM conversations
Fetch DM conversation history
Open new DM conversations
Search (requires User Token)
Search messages across the workspace
Search files
Combined search for messages and files
User Management
List workspace users
Get user profile information
Check user presence/online status
Look up users by email
Get bot and team information
Prerequisites
Python 3.10 or higher
A Slack workspace with admin access to create apps
Slack Bot Token (xoxb-...) for most operations
Slack User Token (xoxp-...) for search functionality
Installation
1. Clone the Repository
2. Create Virtual Environment
3. Install Dependencies
Or install from requirements:
Slack App Setup
1. Create a Slack App
Go to Slack API Apps
Click "Create New App" → "From scratch"
Name your app and select your workspace
2. Configure Bot Token Scopes
Navigate to OAuth & Permissions and add these Bot Token Scopes:
Channels
channels:read- View basic channel infochannels:write- Manage public channelschannels:history- View messages in public channelsgroups:read- View private channelsgroups:write- Manage private channelsgroups:history- View messages in private channels
Messaging
chat:write- Send messagesreactions:read- View reactionsreactions:write- Add reactions
Direct Messages
im:read- View DM infoim:write- Start DMsim:history- View DM historympim:read- View group DM infompim:write- Start group DMsmpim:history- View group DM history
Users
users:read- View usersusers:read.email- View user emails
3. Configure User Token Scopes (for Search)
If you need search functionality, add these User Token Scopes:
search:read- Search messages and files
4. Install the App
Click "Install to Workspace"
Authorize the app
Copy the Bot User OAuth Token (starts with
xoxb-)If using search, also copy the User OAuth Token (starts with
xoxp-)
Configuration
Environment Variables
Create a .env file in the project root:
You can copy the example file:
Usage
Running the Server
As a Python Module
Using the Entry Point
Claude Desktop Configuration
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Replace /path/to/slack-mcp-server with the actual path to your installation.
Cursor IDE Configuration
Add to your Cursor MCP settings:
Available Tools
Channel Tools
Tool | Description |
| List all accessible channels |
| Get details about a specific channel |
| Create a new channel |
| Archive a channel |
| Fetch message history |
| Join a channel |
| Leave a channel |
| Set channel topic |
Message Tools
Tool | Description |
| Post a message to a channel |
| Reply in a thread |
| Get all replies in a thread |
| Add emoji reaction |
| Remove emoji reaction |
| Get reactions on a message |
| Update an existing message |
| Delete a message |
DM Tools
Tool | Description |
| Send a direct message |
| List DM conversations |
| Fetch DM history |
| Open a DM conversation |
Search Tools (requires User Token)
Tool | Description |
| Search messages |
| Search files |
| Search both messages and files |
User Tools
Tool | Description |
| List workspace users |
| Get user details |
| Check if user is online |
| Find user by email |
| Get detailed profile |
| Get bot identity |
| Get workspace info |
Testing
Using MCP Inspector
This opens a web interface to test all available tools interactively.
Manual Testing
Start the server
Use Claude Desktop or another MCP client
Try basic commands:
"List all channels in the workspace"
"Get the history of #general channel"
"Send a message to #test-channel saying Hello!"
Troubleshooting
"SLACK_BOT_TOKEN is not set"
Ensure your .env file exists and contains the token, or set it in your MCP client configuration.
"Search requires a User Token"
Search operations require a User Token (SLACK_USER_TOKEN). Add User Token scopes to your Slack app and include the token.
"channel_not_found"
The bot may not have access to the channel. Ensure:
The channel exists
The bot is a member of private channels
The channel ID is correct (use
list_channelsto find IDs)
"missing_scope"
Your Slack app is missing required permissions. Check the OAuth scopes section above and add the missing scopes in your Slack app settings.
Development
Project Structure
Adding New Tools
Create or edit a file in
src/slack_mcp_server/tools/Define tools using the
@mcp.tool()decoratorRegister the tools in the server by calling the registration function
License
MIT License
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.