Slack MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Slack MCP Serversend a message to #general saying hello team"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Slack MCP Server
A Model Context Protocol (MCP) server that posts notifications to Slack via an
Incoming Webhook. AI agents call tools instead of shelling out to curl.
Features
send_message— plain text and optional Block Kitblockssend_payload— pre-built payload object or multi-part array (rate-limit aware)send_markdown— Markdown → Block Kit conversion with Slack size limits and splittingSTDIO and SSE transports
Works with Claude Code, Cursor, OpenCode, and other MCP clients
Related MCP server: Slack MCP Server
Installation
git clone https://github.com/rokej/slack-mcp-server.git
cd slack-mcp-server
pip install -e ".[dev]"Or install a release wheel:
pip install https://github.com/rokej/slack-mcp-server/releases/download/v0.1.0/slack_mcp_server-0.1.0-py3-none-any.whlConfiguration
Copy .env.example to .env (or export the variable):
export SLACK_WEBHOOK_URL="https://hooks.slack.com/services/T…/B…/…"Create a webhook at Slack API — Your Apps → Incoming Webhooks.
Usage
# STDIO (default) — for MCP clients
slack-mcp-server
# SSE transport
slack-mcp-server --transport sse --port 8080Claude Code / Cursor / OpenCode
{
"mcpServers": {
"slack-webhook": {
"command": "slack-mcp-server",
"env": {
"SLACK_WEBHOOK_URL": "${SLACK_WEBHOOK_URL}"
}
}
}
}In Agent Swarm, add Slack Webhook from
the workspace MCP catalog — Swarmer injects SLACK_WEBHOOK_URL into sandboxes.
Agent container images
Pin a release wheel the same way as jira-mcp-server:
ARG SLACK_MCP_VERSION=0.1.0
RUN curl -fsSL -o /tmp/slack_mcp_server-${SLACK_MCP_VERSION}-py3-none-any.whl \
"https://github.com/rokej/slack-mcp-server/releases/download/v${SLACK_MCP_VERSION}/slack_mcp_server-${SLACK_MCP_VERSION}-py3-none-any.whl" \
&& python3 -m pip install --no-cache-dir /tmp/slack_mcp_server-*.whl \
&& rm -f /tmp/slack_mcp_server-*.whl \
&& slack-mcp-server --help | head -5Tools
Tool | Purpose |
| Post plain text + optional Block Kit blocks |
| Post a pre-built JSON payload (object or array) |
| Convert Markdown to Block Kit and send |
Development
pip install -e ".[dev]"
make test
make lintReleasing
Bump
versioninpyproject.tomland__version__inslack_mcp_server/__init__.pyCommit, then tag and push:
git tag v0.1.0 git push origin v0.1.0The Release workflow builds
slack_mcp_server-X.Y.Z-py3-none-any.whland attaches it to the GitHub Release
License
Apache License 2.0 — see LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceA simplified MCP server for accessing Slack API, enabling AI assistants to list channels, post messages, reply to threads, add reactions, and get channel history.68Apache 2.0
- Alicense-qualityCmaintenanceA Model Context Protocol (MCP) server for Slack workspace integration. This server allows AI assistants to interact directly with your Slack workspace, providing tools to manage channels, send messages, list users, and upload files.20,3681MIT
- Flicense-qualityDmaintenanceA Slack MCP server that gives AI assistants tools to read, search, and interact with Slack workspaces.
- Alicense-qualityCmaintenanceAn MCP server that enables AI agents to read and write Slack messages as the user, not as a bot, using Slack user tokens for authentic actions across multiple workspaces.1MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
An MCP server that integrates with Discord to provide AI-powered features.
MCP server for AI dialogue using various LLM models via AceDataCloud
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rokej/slack-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server