AgentHubAgentHub

Slack

MCP ServerMCP Hub 中国

io.mcp-cn.modelcontextprotocol/server-slack · vlatest

连接Slack的MCP服务器,支持消息发送、频道管理和工作流自动化

概览

Slack 是一个MCP Server,收录自 MCP Hub 中国。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

团队协作即时通讯工作流Slack

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "server-slack": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-slack"
      ],
      "env": {
        "SLACK_BOT_TOKEN": "<SLACK_BOT_TOKEN>",
        "SLACK_TEAM_ID": "<SLACK_TEAM_ID>",
        "SLACK_CHANNEL_IDS": "<SLACK_CHANNEL_IDS>"
      }
    }
  }
}

环境变量

SLACK_BOT_TOKEN必填secret

<YOUR_SLACK_BOT_TOKEN>

SLACK_TEAM_ID必填

<YOUR_SLACK_TEAM_ID>

SLACK_CHANNEL_IDS必填

<YOUR_SLACK_CHANNEL_IDS>

相关资源

统一 Manifest

{
  "id": "io.mcp-cn.modelcontextprotocol/server-slack",
  "type": "mcp-server",
  "version": "latest",
  "displayName": "Slack",
  "description": "连接Slack的MCP服务器,支持消息发送、频道管理和工作流自动化",
  "author": {
    "name": "Anthropic, PBC"
  },
  "iconUrl": "https://cdn4.iconfinder.com/data/icons/logos-and-brands/512/306_Slack_logo-512.png",
  "homepage": "https://mcp-cn.com/server/86",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@modelcontextprotocol/server-slack",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "SLACK_BOT_TOKEN",
            "description": "<YOUR_SLACK_BOT_TOKEN>",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "SLACK_TEAM_ID",
            "description": "<YOUR_SLACK_TEAM_ID>",
            "isRequired": true,
            "isSecret": false
          },
          {
            "name": "SLACK_CHANNEL_IDS",
            "description": "<YOUR_SLACK_CHANNEL_IDS>",
            "isRequired": true,
            "isSecret": false
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [
    "use_count:48689",
    "团队协作",
    "即时通讯",
    "工作流",
    "Slack"
  ],
  "provenance": {
    "origin": "mcp-cn",
    "originalId": "@modelcontextprotocol/server-slack",
    "originalUrl": "https://mcp-cn.com/server/86",
    "isOfficial": false,
    "status": "active"
  }
}
Slack — MCP Server 安装与配置 · AgentHub