src_slack

src_slack

by modelcontextprotocol
An MCP server enabling Claude to interact with Slack workspaces through the Slack API.

Slack Integration for Claude

Overview

The Slack Integration for Claude enables seamless interaction between Claude and Slack workspaces. This integration allows Claude to perform various tasks within Slack, such as posting messages, replying to threads, and managing reactions.

Tools

1. slack_list_channels

  • Description: List public channels in the workspace.
  • Optional Inputs:
  • limit (number, default: 100, max: 200): Maximum number of channels to return.
  • cursor (string): Pagination cursor for next page.
  • Returns: List of channels with their IDs and information.

2. slack_post_message

  • Description: Post a new message to a Slack channel.
  • Required Inputs:
  • channel_id (string): The ID of the channel to post to.
  • text (string): The message text to post.
  • Returns: Message posting confirmation and timestamp.

3. slack_reply_to_thread

  • Description: Reply to a specific message thread.
  • Required Inputs:
  • channel_id (string): The channel containing the thread.
  • thread_ts (string): Timestamp of the parent message.
  • text (string): The reply text.
  • Returns: Reply confirmation and timestamp.

4. slack_add_reaction

  • Description: Add an emoji reaction to a message.
  • Required Inputs:
  • channel_id (string): The channel containing the message.
  • timestamp (string): Message timestamp to react to.
  • reaction (string): Emoji name without colons.
  • Returns: Reaction confirmation.

5. slack_get_channel_history

  • Description: Get recent messages from a channel.
  • Required Inputs:
  • channel_id (string): The channel ID.
  • Optional Inputs:
  • limit (number, default: 10): Number of messages to retrieve.
  • Returns: List of messages with their content and metadata.

6. slack_get_thread_replies

  • Description: Get all replies in a message thread.
  • Required Inputs:
  • channel_id (string): The channel containing the thread.
  • thread_ts (string): Timestamp of the parent message.
  • Returns: List of replies with their content and metadata.

7. slack_get_users

  • Description: Get list of workspace users with basic profile information.
  • Optional Inputs:
  • cursor (string): Pagination cursor for next page.
  • limit (number, default: 100, max: 200): Maximum users to return.
  • Returns: List of users with their basic profiles.

8. slack_get_user_profile

  • Description: Get detailed profile information for a specific user.
  • Required Inputs:
  • user_id (string): The user's ID.
  • Returns: Detailed user profile information.

Setup

  1. Create a Slack App:
  2. Visit the Slack Apps page.
  3. Click "Create New App".
  4. Choose "From scratch".
  5. Name your app and select your workspace.

  6. Configure Bot Token Scopes:

  7. Navigate to "OAuth & Permissions" and add these scopes:

    • channels:history: View messages and other content in public channels.
    • channels:read: View basic channel information.
    • chat:write: Send messages as the app.
    • reactions:write: Add emoji reactions to messages.
    • users:read: View users and their basic information.
  8. Install App to Workspace:

  9. Click "Install to Workspace" and authorize the app.
  10. Save the "Bot User OAuth Token" that starts with xoxb-.

  11. Get your Team ID:

  12. Follow this guidance to get your Team ID (starts with a T).

Usage with Claude Desktop

Add the following to your claude_desktop_config.json:

npx

{
  "mcpServers": {
    "slack": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-slack"
      ],
      "env": {
        "SLACK_BOT_TOKEN": "xoxb-your-bot-token",
        "SLACK_TEAM_ID": "T01234567"
      }
    }
  }
}

docker

{
  "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"
      }
    }
  }
}

Troubleshooting

If you encounter permission errors, verify that:
1. All required scopes are added to your Slack app.
2. The app is properly installed to your workspace.
3. The tokens and workspace ID are correctly copied to your configuration.
4. The app has been added to the channels it needs to access.

Build

Docker build:

docker build -t mcp/slack -f src/slack/Dockerfile .

License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.

Features & Capabilities

Categories
mcp_server model_context_protocol slack api_integration docker typescript claude

Implementation Details

Stats

0 Views
27 GitHub Stars

Repository Info

modelcontextprotocol Organization

Similar MCP Servers

continuedev_continue by continuedev
25049
21423
9300