Type: company
Confidence: 0.80
Created: 2026-04-19
Updated: 2026-04-19
Tags: 通讯工具协作平台MCP集成AI工程

Slack

概述

企业级团队通讯与协作平台,在 Agent 生态中通过 MCP Server 集成,使 AI Agent 能够读取消息、发送通知、管理频道。

关键内容

  1. 作为 MCP Server 集成:通过 Python 模块 slack_mcp_server 封装 Slack API,在 Codex CLI 的 config.toml 中声明为可选 MCP 服务器(默认 enabled = false,按需启用)。

  2. 配置方式toml [mcp_servers.slack] command = "python" args = ["-m", "slack_mcp_server"] enabled = false # 按需启用

  3. 传输协议:通常通过 stdio 方式运行——Codex 启动 Slack MCP Server 进程,通过 stdin/stdout 通信,优点是简单且无端口冲突。

  4. 在 Agent 生态中的角色:作为 Agent 与人类团队的通讯桥梁,Agent 可通过 Slack MCP 工具读取频道消息、发送通知、响应 @mention,实现人机协作闭环。

来源

相关