Slack MCP Server

Slack MCP Server

Enables AI assistants to interact with Slack workspaces through comprehensive channel management, messaging, direct messages, search functionality, and user management capabilities.

Category
Visit Server

README

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

git clone <repository-url>
cd slack-mcp-server

2. Create Virtual Environment

python3.12 -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate

3. Install Dependencies

pip install -e .

Or install from requirements:

pip install -r requirements.txt

Slack App Setup

1. Create a Slack App

  1. Go to Slack API Apps
  2. Click "Create New App" → "From scratch"
  3. 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 info
  • channels:write - Manage public channels
  • channels:history - View messages in public channels
  • groups:read - View private channels
  • groups:write - Manage private channels
  • groups:history - View messages in private channels

Messaging

  • chat:write - Send messages
  • reactions:read - View reactions
  • reactions:write - Add reactions

Direct Messages

  • im:read - View DM info
  • im:write - Start DMs
  • im:history - View DM history
  • mpim:read - View group DM info
  • mpim:write - Start group DMs
  • mpim:history - View group DM history

Users

  • users:read - View users
  • users: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

  1. Click "Install to Workspace"
  2. Authorize the app
  3. Copy the Bot User OAuth Token (starts with xoxb-)
  4. If using search, also copy the User OAuth Token (starts with xoxp-)

Configuration

Environment Variables

Create a .env file in the project root:

# Required: Bot Token for most operations
SLACK_BOT_TOKEN=xoxb-your-bot-token-here

# Optional: User Token for search functionality
SLACK_USER_TOKEN=xoxp-your-user-token-here

You can copy the example file:

cp env.example .env
# Then edit .env with your tokens

Usage

Running the Server

As a Python Module

source venv/bin/activate
python -m slack_mcp_server

Using the Entry Point

source venv/bin/activate
slack-mcp-server

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

{
  "mcpServers": {
    "slack": {
      "command": "/path/to/slack-mcp-server/venv/bin/python",
      "args": ["-m", "slack_mcp_server"],
      "cwd": "/path/to/slack-mcp-server",
      "env": {
        "SLACK_BOT_TOKEN": "xoxb-your-bot-token",
        "SLACK_USER_TOKEN": "xoxp-your-user-token"
      }
    }
  }
}

Replace /path/to/slack-mcp-server with the actual path to your installation.

Cursor IDE Configuration

Add to your Cursor MCP settings:

{
  "mcpServers": {
    "slack": {
      "command": "/path/to/slack-mcp-server/venv/bin/python",
      "args": ["-m", "slack_mcp_server"],
      "cwd": "/path/to/slack-mcp-server",
      "env": {
        "SLACK_BOT_TOKEN": "xoxb-your-bot-token",
        "SLACK_USER_TOKEN": "xoxp-your-user-token"
      }
    }
  }
}

Available Tools

Channel Tools

Tool Description
list_channels List all accessible channels
get_channel_info Get details about a specific channel
create_channel Create a new channel
archive_channel Archive a channel
get_channel_history Fetch message history
join_channel Join a channel
leave_channel Leave a channel
set_channel_topic Set channel topic

Message Tools

Tool Description
post_message Post a message to a channel
reply_to_thread Reply in a thread
get_thread_replies Get all replies in a thread
add_reaction Add emoji reaction
remove_reaction Remove emoji reaction
get_message_reactions Get reactions on a message
update_message Update an existing message
delete_message Delete a message

DM Tools

Tool Description
send_dm Send a direct message
list_conversations List DM conversations
get_dm_history Fetch DM history
open_dm Open a DM conversation

Search Tools (requires User Token)

Tool Description
search_messages Search messages
search_files Search files
search_all Search both messages and files

User Tools

Tool Description
list_users List workspace users
get_user_info Get user details
get_user_presence Check if user is online
lookup_user_by_email Find user by email
get_user_profile Get detailed profile
get_bot_info Get bot identity
get_team_info Get workspace info

Testing

Using MCP Inspector

npx @modelcontextprotocol/inspector python -m slack_mcp_server

This opens a web interface to test all available tools interactively.

Manual Testing

  1. Start the server
  2. Use Claude Desktop or another MCP client
  3. 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:

  1. The channel exists
  2. The bot is a member of private channels
  3. The channel ID is correct (use list_channels to 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

slack-mcp-server/
├── src/
│   └── slack_mcp_server/
│       ├── __init__.py
│       ├── __main__.py
│       ├── server.py              # FastMCP server entry point
│       ├── tools/
│       │   ├── __init__.py
│       │   ├── channels.py        # Channel management tools
│       │   ├── messages.py        # Messaging and DM tools
│       │   ├── search.py          # Search functionality
│       │   └── users.py           # User management tools
│       └── utils/
│           ├── __init__.py
│           └── slack_client.py    # Slack API wrapper
├── pyproject.toml
├── requirements.txt
├── env.example
└── README.md

Adding New Tools

  1. Create or edit a file in src/slack_mcp_server/tools/
  2. Define tools using the @mcp.tool() decorator
  3. Register 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.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured