Slack MCP

Slack MCP

Enables Slack workspace integration including channel creation, user invites, message posting, and thread management through natural language.

Category
Visit Server

README

Slack MCP server

MCP server for Slack workspace integration. Handles channel creation, user invites, message posting, and thread management.

Setup

1. Create a Slack app

  1. Go to api.slack.com/apps
  2. Click "Create New App" → "From scratch"
  3. Name it (e.g., "Claude MCP") and select your workspace

2. Add OAuth scopes

Under "OAuth & Permissions", add these Bot Token Scopes:

channels:manage        # create public channels
groups:write           # create private channels
channels:read          # list channels
groups:read            # read private channels
chat:write             # post messages
pins:write             # pin messages
users:read             # list users
users:read.email       # lookup users by email

3. Install to workspace

Click "Install to Workspace" and authorize the app.

4. Get bot token

Copy the "Bot User OAuth Token" (starts with xoxb-).

5. Configure environment

export SLACK_BOT_TOKEN="xoxb-your-token-here"

Or add to your Claude config:

{
  "mcpServers": {
    "slack": {
      "command": "node",
      "args": ["/path/to/slack-mcp/dist/index.js"],
      "env": {
        "SLACK_BOT_TOKEN": "xoxb-your-token-here"
      }
    }
  }
}

6. Build and run

npm install
npm run build
npm start

Tools

slack_create_channel

Create a new Slack channel.

{
  "name": "gtm-jeff",
  "is_private": true,
  "description": "GTM materials for Jeff launch"
}

slack_invite_to_channel

Invite users by email or user ID.

{
  "channel_id": "C123ABC",
  "users": ["harper@2389.ai", "dylan@2389.ai"]
}

slack_post_message

Post a message to a channel.

{
  "channel_id": "C123ABC",
  "text": "## Email

**Subject:** meet jeff..."
}

slack_post_thread

Reply to a message in a thread.

{
  "channel_id": "C123ABC",
  "thread_ts": "1234567890.123456",
  "text": "Updated the subject line"
}

slack_pin_message

Pin a message to a channel.

{
  "channel_id": "C123ABC",
  "message_ts": "1234567890.123456"
}

slack_list_users

List all users in the workspace.

{}

Usage with product launcher

After generating GTM materials, say "push to slack":

  1. Creates #gtm-[product] private channel
  2. Invites Harper and Dylan
  3. Posts each output (email, blog, tweets) as separate messages
  4. Pins the summary message

License

MIT

Installation

/plugin marketplace add 2389-research/claude-plugins
/plugin install slack-mcp@2389-research

If Slack MCP saved you from context-switching out of your terminal, a ⭐ helps us know it's landing.

Built by 2389 · Part of the Claude Code plugin marketplace

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured