Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"slack": {
"env": {
"SLACK_USER_TOKEN": "xoxp-your-user-token-here",
"SLACK_WORKSPACE_URL": "https://your-workspace.slack.com"
},
"args": [
"slack-mcp-server-v2"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides programmatic access to Slack conversations, threads, and workspace information. Designed for AI assistants like Claude to interact with your Slack workspace through a standardized interface.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'slack-mcp-server-v2' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked slack-mcp-server-v2 against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Local-first AI memory with knowledge graphs and hybrid search. 17+ AI tools via MCP. Free.
MCP Server for Computer Use in Windows
MCP Security Weekly
Get CVE alerts and security updates for io.github.stevenvo/slack-mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides programmatic access to Slack conversations, threads, and workspace information. Designed for AI assistants like Claude to interact with your Slack workspace through a standardized interface.
The Model Context Protocol is an open standard that enables AI assistants to securely access external data sources and tools. This server implements MCP to give Claude direct access to your Slack workspace.
The easiest way to use this MCP server is to install it directly from PyPI:
# Install via pip
pip install slack-mcp-server-v2
# Or install via uvx (recommended for MCP servers)
uvx slack-mcp-server-v2
# Clone the repository
git clone https://github.com/stevenvo/slack-mcp-server.git
cd slack-mcp-server
# Install dependencies
pip install -r requirements.txt
After installation, you'll need to set up authentication (see below).
A User Token uses your personal Slack permissions and can access all channels you're a member of.
channels:history - View messages in public channelschannels:read - View basic channel infogroups:history - View messages in private channelsgroups:read - View basic private channel infoim:history - View messages in direct messagesim:read - View basic DM infompim:history - View messages in group DMsmpim:read - View basic group DM infousers:read - View user informationsearch:read - Search messagesxoxp-)A Bot Token is more limited but easier to set up for team-wide access.
xoxb-)/invite @YourBotNameCreate a .env file:
cp .env.example .env
Edit .env and add your token:
# Use one of these:
SLACK_USER_TOKEN=xoxp-your-user-token-here
# OR
SLACK_BOT_TOKEN=xoxb-your-bot-token-here
Add this server to Claude Code by editing your ~/.claude.json file:
{
"mcpServers": {
"slack": {
"command": "uvx",
"args": ["slack-mcp-server-v2"],
"env": {
"SLACK_USER_TOKEN": "xoxp-your-u
... [View full README on GitHub](https://github.com/stevenvo/slack-mcp-server#readme)