Slack is a Communication MCP server that lets Claude Code, Cursor, Windsurf and any MCP-compatible AI agent slack channels, messages, and workspace management. Install in 1 minute with mcpizy install slack.
Connect your Slack account once — MCPizy stores the credentials encrypted and uses them whenever you run a recipe in managed mode.
mcpizy install slacknpx -y @modelcontextprotocol/server-slackslack_list_channelsList channels in the workspace
Inputs
limitnumberoptionalslack_post_messagePost a message to a channel
Inputs
channel_idstringrequiredtextstringrequiredslack_reply_to_threadReply to a thread in a channel
Inputs
channel_idstringrequiredthread_tsstringrequiredtextstringrequiredslack_add_reactionAdd an emoji reaction to a message
Inputs
channel_idstringrequiredtimestampstringrequiredreactionstringrequiredslack_get_channel_historyGet recent messages from a channel
Inputs
channel_idstringrequiredlimitnumberoptionalslack_get_usersList users in the workspace
slack_get_user_profileGet a user's profile information
Inputs
user_idstringrequiredWorks identically across clients. Only the config file path differs.
~/.claude.json{
"mcpServers": {
"slack": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-slack"
],
"env": {
"SLACK_BOT_TOKEN": "xoxb-...",
"SLACK_TEAM_ID": "T01..."
}
}
}
}.cursor/mcp.json{
"mcpServers": {
"slack": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-slack"
],
"env": {
"SLACK_BOT_TOKEN": "xoxb-...",
"SLACK_TEAM_ID": "T01..."
}
}
}
}~/.codeium/windsurf/mcp_config.json{
"mcpServers": {
"slack": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-slack"
],
"env": {
"SLACK_BOT_TOKEN": "xoxb-...",
"SLACK_TEAM_ID": "T01..."
}
}
}
}Paste any of these prompts into Claude Code, Cursor or another MCP-compatible client.
“Post 'Deploy completed' to #engineering”
Uses: slack_list_channels, slack_post_message
“Summarise the last 50 messages in #support and flag any urgent issues”
Uses: slack_get_channel_history
“React with :eyes: to the latest message in #incidents”
Uses: slack_get_channel_history, slack_add_reaction
“Who is @alice and what's her role?”
Uses: slack_get_users, slack_get_user_profile
If Slack doesn't fit your stack, these Communication MCP servers solve similar problems.
The Slack MCP server is an Communication Model Context Protocol server that lets Claude Code, Cursor, Windsurf, VS Code with Copilot, and other MCP-compatible AI agents slack channels, messages, and workspace management. It exposes Slack's capabilities as tools the AI can call directly from your editor or CLI.
The fastest way is the MCPizy CLI: run `mcpizy install slack` and MCPizy will add the server to your `.claude.json` automatically. You can also install it manually by adding an entry under `mcpServers` in `.claude.json` with the command `npx -y @modelcontextprotocol/server-slack` and restarting Claude Code.
Yes. The Slack MCP server is free and open source (see the GitHub repository linked on this page). You may still need a Slack account or API key to connect the server to the underlying service, but the MCP layer itself has no MCPizy subscription cost.
Yes. Any MCP-compatible client works — including Claude Code, Claude Desktop, Cursor (via `.cursor/mcp.json`), Windsurf, VS Code with Copilot Chat, and custom agents built on the MCP SDK. The same install command targets all of them; only the config file path differs.
Once installed, your AI agent can slack channels, messages, and workspace management directly inside your conversation. Typical use cases include asking Claude Code or Cursor to run Slack operations, inspect results, chain Slack with other MCP servers (see our Workflow Recipes), and automate repetitive communication tasks without leaving your editor.