Slack MCP Server: Let Your AI Agent Read and Send Messages (2026)
Set up the Slack MCP server for your AI agent. Read channels, search conversations, post updates, and gather context fro
The Slack MCP server connects your AI coding agent to your team's Slack workspace. Your agent can read channel messages, search conversations, post updates, and react to threads through the Model Context Protocol.
Quick Answer: The Slack MCP server connects an AI agent to Slack to read and send messages, enabling the agent to gather context from team discussions for tasks like coding, summarizing channels, posting updates, and automating standup or deployment reports.
Why Connect an AI Agent to Slack?
The most common use case isn't chatbots. It's context. Developers discuss decisions, share requirements, and provide feedback in Slack. When your AI agent can read those conversations, it has the context it needs to write better code.
Practical examples:
- "Read the #frontend channel and summarize what the team decided about the new design system"
- "Post a deployment summary to #releases after I finish this migration"
- "Search Slack for any discussion about the authentication refactor"
Recommended skills
Offer Gravity Lab
by Bani Berisha
Transform messy product notes into rigorous positioning, message maps, and campa…

The TweetClaw
by Martin Gunderman
Professional X/Twitter automation for AI agents: Post, monitor, extract data, an…
nex-whatsapp-business-notify
by Nex AI
Enterprise-grade WhatsApp Business Cloud API integration for Python with session…
Installation
npm install -g @anthropic/mcp-slack
Configure in your Claude Code MCP settings:
{
"mcpServers": {
"slack": {
"command": "npx",
"args": ["@anthropic/mcp-slack"],
"env": {
"SLACK_BOT_TOKEN": "xoxb-your-bot-token"
}
}
}
}
You'll need to create a Slack app in your workspace and generate a bot token with appropriate permissions (channels:read, chat:write, search:read at minimum).
Key Workflows
Gathering Requirements
"Read the last 50 messages in #product-feedback and list the top feature requests."
The agent reads the channel, identifies themes, and produces a structured summary. This is useful before sprint planning or when prioritizing work.
Deployment Notifications
"Post to #deployments: 'Auth service v2.3 deployed to production. Changes: OAuth2.1 flow, session management refactor, rate limiting on /token endpoint.'"
Automate deployment announcements. The agent can generate release notes from your git history and post them to the right channel.
Standup Reports
"Read my recent commits and draft a standup update for #daily-standup."
The agent compiles what you've done, formats it as a standup update, and posts it. Less time spent writing updates, more time coding.
Context for Code Changes
"Search Slack for discussions about the payment flow redesign, then implement the approach the team agreed on."
This is where Slack MCP becomes powerful. The agent gathers context from team discussions, then uses that context to inform its coding decisions. Combined with the right skills, this creates an agent that understands not just the code but the reasoning behind it.
Permissions
Set up your Slack bot token with minimal required permissions:
channels:readfor reading public channelschannels:historyfor reading message historychat:writefor posting messagessearch:readfor searching conversationsusers:readfor resolving usernames
Avoid giving the bot admin permissions. The agent should be able to read and post, not manage channels or users.
Pairing with Skills
A documentation skill paired with the Slack MCP server lets your agent gather requirements from Slack and generate technical documentation. A code review skill lets it summarize PR discussions happening in Slack threads.
Browse skills on Agensi that complement the Slack MCP server.
Frequently Asked Questions
Skills you might need
LLM Prompt Stabilizer — 6-Layer Pattern for Consistent Agent Output
$15Battle-tested prompting patterns to eliminate LLM output drift. Sandwich structu…
MCP Server Builder — Scaffold a Secure, Spec-Compliant MCP Server (Tools, Resources, Auth) Without the Footguns
$24Scaffold a secure, spec-compliant MCP server from a description of the tools you…
MCP Server Safety Checklist
$15Automated security auditing and risk assessment for Model Context Protocol (MCP)…
Related Articles
n8n MCP Server: Automate Workflows with Your AI Agent (2026)
Set up the n8n MCP server to let your AI agent create, modify, and trigger workflow automations through the Model Contex
4 min read
Playwright MCP Server: Setup Guide for AI Coding Agents (2026)
The Playwright MCP server lets your AI coding agent run browser tests, take screenshots, and debug E2E failures.
5 min read