This MCP server provides tools for Claude to interact with Slack workspaces, enabling operations like listing channels, posting messages, getting message history, and more.
Create a Slack App:
Configure Bot Token Scopes: Navigate to "OAuth & Permissions" 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 informationInstall App to Workspace:
xoxb-
Get your Team ID (starts with a T
) by following this guidance
Add the MCP server to your claude_desktop_config.json
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"
}
}
}
}
The slack_list_channels
tool allows you to list public channels in the workspace:
limit
(number, default: 100, max: 200): Maximum number of channels to returncursor
(string): Pagination cursor for next pageThe slack_get_channel_history
tool retrieves recent messages from a channel:
channel_id
(string): The channel IDlimit
(number, default: 10): Number of messages to retrieveThe slack_post_message
tool posts a new message to a Slack channel:
channel_id
(string): The ID of the channel to post totext
(string): The message text to postThe slack_reply_to_thread
tool lets you reply to a specific message thread:
channel_id
(string): The channel containing the threadthread_ts
(string): Timestamp of the parent messagetext
(string): The reply textThe slack_add_reaction
tool adds an emoji reaction to a message:
channel_id
(string): The channel containing the messagetimestamp
(string): Message timestamp to react toreaction
(string): Emoji name without colonsThe slack_get_thread_replies
tool retrieves all replies in a message thread:
channel_id
(string): The channel containing the threadthread_ts
(string): Timestamp of the parent messageThe slack_get_users
tool gets a list of workspace users with basic profile information:
cursor
(string): Pagination cursor for next pagelimit
(number, default: 100, max: 200): Maximum users to returnThe slack_get_user_profile
tool retrieves detailed profile information for a specific user:
user_id
(string): The user's IDIf you encounter permission errors, verify that:
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.