Home/Servers/Slack MCP Server

Slack MCP Server

by Anthropic ยท โญ 2.1k stars ยท updated 2 months ago

Full Slack workspace integration. Search messages, post to channels, list users, manage workflows โ€” complete Slack automation for AI agents.

88
Very Good

Quality Score Breakdown

maintenance88/100
community90/100
documentation87/100
compatibility87/100

Use Cases

  • โœ“post Slack messages
  • โœ“search channels
  • โœ“list workspace members
  • โœ“manage workflows

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "slack": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-slack"
      ],
      "env": {
        "SLACK_BOT_TOKEN": "xoxb-YOUR-TOKEN",
        "SLACK_TEAM_ID": "YOUR_TEAM_ID"
      }
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "slack": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-slack"
      ],
      "env": {
        "SLACK_BOT_TOKEN": "xoxb-YOUR-TOKEN",
        "SLACK_TEAM_ID": "YOUR_TEAM_ID"
      }
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "slack": {
        "command": "npx",
        "args": [
          "-y",
          "@modelcontextprotocol/server-slack"
        ],
        "env": {
          "SLACK_BOT_TOKEN": "xoxb-YOUR-TOKEN",
          "SLACK_TEAM_ID": "YOUR_TEAM_ID"
        }
      }
    }
  }
}
โ† Back to all servers