drio
Open app

Slack Mcp Bot Integration

Source

WIP: Simple MCP (Model Context Protocol) server example for Slack

Catalog onlyCatalog onlySTDIO

Overview

Slack Mcp Bot Integration is a work-in-progress (WIP) project designed to create a simple Model Context Protocol (MCP) server example for integration with Slack.

Currently, this project is under development, and instructions for use will be provided once the features are fully implemented.

  • Demonstrates the use of MCP for bot interactions in Slack. - Acts as a foundation for more complex Slack bot functionalities.
  1. Integrating Slack with various services using the MCP.
  2. Developing custom Slack bots that utilize contextual messaging.

Add to your AI client

Use these steps to connect Slack Mcp Bot Integration in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "slack-mcp-bot-integration-seratch": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-slack-mcp-bot-integration-seratch"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "slack-mcp-bot-integration-seratch": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-slack-mcp-bot-integration-seratch"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "slack-mcp-bot-integration-seratch": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-slack-mcp-bot-integration-seratch"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "slack-mcp-bot-integration-seratch": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-slack-mcp-bot-integration-seratch"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "slack-mcp-bot-integration-seratch": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-slack-mcp-bot-integration-seratch"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "slack-mcp-bot-integration-seratch": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-slack-mcp-bot-integration-seratch"
      ]
    }
  }
}

FAQ

Is this project fully functional?

No, it is currently a work in progress and does not yet have full functionality due to lack of SSE support on the MCP client side.

Where can I find more information?

More details can be found on the project's GitHub repository: [Slack Mcp Bot Integration](https://github.com/seratch/slack-mcp-bot-integration).